Freigeben über


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)

Parameter

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

Eigenschaftswert

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

Beispiel

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];

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

SubscriberDeviceEnumeration Class
SubscriberDeviceEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace