Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Creates an uninitialized instance of the SubscriberEnumeration class.
Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Синтаксис
'Декларация
Public Sub New
public SubscriberEnumeration ()
public:
SubscriberEnumeration ()
public SubscriberEnumeration ()
public function SubscriberEnumeration ()
Замечания
The parameterless constructor is used in conjunction with the Initialize method to enable COM interoperability. After construction, you must initialize the SubscriberEnumeration with a reference to an NSInstance.
Пример
The following example shows how to create and initialize a SubscriberEnumeration in unmanaged Microsoft Visual Basic Scripting Edition (VBScript) code:
Dim myInstance, mySubscriberEnumeration
const instanceName = "MyInstanceName"
'Create & initialize an NSInstance object.
set myInstance = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.NSInstance")
myInstance.Initialize instanceName
'Create & initialize a SubscriberEnumeration object.
set mySubscriberEnumeration = WScript.CreateObject("Microsoft.SqlServer.NotificationServices.SubscriberEnumeration")
mySubscriberEnumeration.Initialize (myInstance)
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
SubscriberEnumeration Class
SubscriberEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace