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.
Creates and initializes an object of the SubscriptionClassEnumeration class.
Namespace: Microsoft.SqlServer.NotificationServices
Assembly : Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Syntax
'Declaration
Public Sub New ( _
application As NSApplication _
)
public SubscriptionClassEnumeration (
NSApplication application
)
public:
SubscriptionClassEnumeration (
NSApplication^ application
)
public SubscriptionClassEnumeration (
NSApplication application
)
public function SubscriptionClassEnumeration (
application : NSApplication
)
Parameter
- application
An NSApplication representing the Notification Services application that contains the subscription classes to be enumerated by this SubscriptionClassEnumeration object.
Beispiel
The following examples show how to create and initialize a SubscriptionClassEnumeration in managed code:
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)
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);
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