Примечание.
Для доступа к этой странице требуется авторизация. Вы можете попробовать войти или изменить каталоги.
Для доступа к этой странице требуется авторизация. Вы можете попробовать изменить каталоги.
Creates and initializes an instance of the SubscriberEnumeration class.
Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Синтаксис
'Декларация
Public Sub New ( _
nsInstance As NSInstance _
)
public SubscriberEnumeration (
NSInstance nsInstance
)
public:
SubscriberEnumeration (
NSInstance^ nsInstance
)
public SubscriberEnumeration (
NSInstance nsInstance
)
public function SubscriberEnumeration (
nsInstance : NSInstance
)
Параметры
- nsInstance
An NSInstance object representing the Notification Services instance that contains the collection of subscribers.
Пример
The following examples show how to create and initialize a SubscriberEnumeration in managed code:
Dim instanceName As String = "MyInstanceName"
'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)
'Create a SubscriberDevice object.
Dim mySubscriberEnumeration As _
New SubscriberEnumeration(myInstance)
string instanceName = "MyInstanceName";
//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);
//Create a SubscriberEnumeration object.
SubscriberEnumeration mySubscriberEnumeration =
new SubscriberEnumeration(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