SubscriberDeviceEnumeration.Item Property

Returns a reference to an individual subscriber device.

Namespace: Microsoft.SqlServer.NotificationServices
Assembly: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Syntax

'Declaration
Public ReadOnly Default Property Item ( _
    deviceName As String _
) As SubscriberDevice
public SubscriberDevice this [
    string deviceName
] { get; }
public:
virtual property SubscriberDevice^ default [String^] {
    SubscriberDevice^ get (String^ deviceName) sealed;
}
/** @property */
public final SubscriberDevice get_Item (String deviceName)

Parameters

  • deviceName
    The name of the subscriber device that you want returned.

Property Value

A SubscriberDevice object, which represents a target device for receiving notifications.

Example

The following examples show how to use the Item property to return a SubscriberDevice:

Dim instanceName As String = "MyInstanceName"
Dim subscriberId As String = "MySubscriberID"
Dim deviceName As String = "MyDeviceName"

'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)

'Create a SubscriberDeviceEnumeration object.
Dim mySubscriberDeviceEnumeration As _
    New SubscriberDeviceEnumeration(myInstance, subscriberId)

'Use the Item property to return a SubscriberDevice object.
Dim mySubscriberDevice As SubscriberDevice = _
    mySubscriberDeviceEnumeration(deviceName)
string instanceName = "MyInstanceName";
string subscriberId = "MySubscriberID";
string deviceName = "MyDeviceName";

//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);

//Create a SubscriberDeviceEnumeration object.
SubscriberDeviceEnumeration mySubscriberDeviceEnumeration = 
    new SubscriberDeviceEnumeration(myInstance, subscriberId);

//Use the Item property to return a SubscriberDevice object.
SubscriberDevice mySubscriberDevice = 
    mySubscriberDeviceEnumeration[deviceName];

Thread Safety

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

Target Platforms

For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server 2005.

See Also

Reference

SubscriberDeviceEnumeration Class
SubscriberDeviceEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace