SubscriberEnumeration.Item Property
Returns a reference to an individual subscriber.
Spazio dei nomi: Microsoft.SqlServer.NotificationServices
Assembly : Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Sintassi
'Dichiarazione
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)
Parametri
- subscriberId
The identifier of the subscriber that you want returned.
Valore proprietà
A Subscriber, which represents an individual subscriber.
Osservazioni
In C#, this property is the indexer for the SubscriberEnumeration class.
Esempio
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.
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
SubscriberEnumeration Class
SubscriberEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace