Share via


SubscriberDeviceEnumeration.Item Property

Returns a reference to an individual subscriber device.

Spazio dei nomi: Microsoft.SqlServer.NotificationServices
Assembly : Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Sintassi

'Dichiarazione
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)

Parametri

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

Valore proprietà

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

Esempio

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.

Piattaforme

Piattaforme di sviluppo

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Piattaforme di destinazione

Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.

Vedere anche

Riferimento

SubscriberDeviceEnumeration Class
SubscriberDeviceEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace