Freigeben über


SubscriberDeviceEnumeration Constructor ()

Creates an uninitialized instance of the SubscriberDeviceEnumeration class.

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

Syntax

'Declaration
Public Sub New
public SubscriberDeviceEnumeration ()
public:
SubscriberDeviceEnumeration ()
public SubscriberDeviceEnumeration ()
public function SubscriberDeviceEnumeration ()

Hinweise

The parameterless constructor is used in conjunction with the Initialize method to enable COM interoperability. After creating the instance, you must initialize it with a reference to an NSInstance and a subscriber ID.

Beispiel

The following example shows how to create and initialize a SubscriberDeviceEnumeration in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code:

Dim myInstance, mySubscriberDeviceEnumeration

const instanceName = "MyInstanceName"
subscriberId = "TestSubscriber"

'Create & initialize an NSInstance object.
set myInstance = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.NSInstance")
myInstance.Initialize instanceName

set mySubscriberDeviceEnumeration = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.SubscriberDeviceEnumeration")
mySubscriberDeviceEnumeration.Initialize (myInstance), subscriberId

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

SubscriberDeviceEnumeration Class
SubscriberDeviceEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace