SubscriberEnumeration.Item Property

Returns a reference to an individual subscriber.

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

Syntax

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

Parameter

  • subscriberId
    The identifier of the subscriber that you want returned.

Eigenschaftswert

A Subscriber, which represents an individual subscriber.

Hinweise

In C#, this property is the indexer for the SubscriberEnumeration class.

Beispiel

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

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

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

'Create a SubscriberEnumeration object.
Dim mySubscriberEnumeration As _
    New SubscriberEnumeration(myInstance)

'Use the Item property to return a Subscriber object.
Dim mySubscriber As Subscriber = _
    mySubscriberEnumeration(subscriberId)
string instanceName = "MyInstanceName";
string subscriberId = "MySubscriberID";

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

//Create a SubscriberEnumeration object.
SubscriberEnumeration mySubscriberEnumeration = 
    new SubscriberEnumeration(myInstance);

//Use the Item property to return a Subscriber object.
Subscriber mySubscriber = 
    mySubscriberEnumeration[subscriberId];

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

SubscriberEnumeration Class
SubscriberEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace