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)

Parameters

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

Property Value

A Subscriber, which represents an individual subscriber.

Remarks

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

Example

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

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

SubscriberEnumeration Class
SubscriberEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace