Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets an IEnumerator interface that allows you to iterate through the collection of subscription classes represented by the SubscriptionClassEnumeration object.
Namespace: Microsoft.SqlServer.NotificationServices
Assembly : Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Syntax
'Declaration
Public Function GetEnumerator As IEnumerator
public IEnumerator GetEnumerator ()
public:
virtual IEnumerator^ GetEnumerator () sealed
public final IEnumerator GetEnumerator ()
public final function GetEnumerator () : IEnumerator
Rückgabewert
An IEnumerator interface for the SubscriptionClassEnumeration object.
Hinweise
Use this method to return an IEnumerator interface that allows you to iterate through the subscription classes in a SubscriptionClassEnumeration object. An initialized SubscriptionClassEnumeration object represents the collection of subscription classes in a specified Notification Services application.
Beispiel
The following examples show how to use a SubscriptionClassEnumeration object to iterate through a set of subscription classes. The GetEnumerator method makes the For Each and foreach statements possible:
Dim instanceName As String = "MyInstanceName"
Dim applicationName As String = "MyApplicationName"
'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)
'Create an NSApplication object.
Dim myApplication As New NSApplication(myInstance, applicationName)
'Create a SubscriptionClassEnumeration object.
Dim mySubscriptionClassEnumeration As _
New SubscriptionClassEnumeration(myApplication)
'Iterate through the subscription classes.
Dim subscriptionClass As SubscriptionClass
For Each subscriptionClass In mySubscriptionClassEnumeration
Console.WriteLine("Subscription Class Name: {0}", _
subscriptionClass.SubscriptionClassName)
Next subscriptionClass
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);
//Create an NSApplication object.
NSApplication myApplication =
new NSApplication(myInstance, applicationName);
//Create a SubscriptionClassEnumeration object.
SubscriptionClassEnumeration mySubscriptionClassEnumeration =
new SubscriptionClassEnumeration(myApplication);
//Iterate through the subscription classes.
foreach (SubscriptionClass subscriptionClass
in mySubscriptionClassEnumeration)
{
Console.WriteLine("Subscription Class Name: {0}",
subscriptionClass.SubscriptionClassName);
}
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
SubscriptionClassEnumeration Class
SubscriptionClassEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace