Поделиться через


SubscriberDevice Constructor (NSInstance)

Creates and initializes an instance of the SubscriberDevice class.

Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Синтаксис

'Декларация
Public Sub New ( _
    nsInstance As NSInstance _
)
public SubscriberDevice (
    NSInstance nsInstance
)
public:
SubscriberDevice (
    NSInstance^ nsInstance
)
public SubscriberDevice (
    NSInstance nsInstance
)
public function SubscriberDevice (
    nsInstance : NSInstance
)

Параметры

  • nsInstance
    An NSInstance representing the Notification Services instance that contains the subscriber device.

Пример

The following examples show how to create and initialize a SubscriberDevice in managed code:

Dim instanceName As String = "Tutorial"

' Create the NSInstance object.
Dim testInstance As New NSInstance(instanceName)

' Create the SubscriberDevice object.
Dim testSubscriberDevice As SubscriberDevice = _
    New SubscriberDevice(testInstance)
string instanceName = "Tutorial";

// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);

// Create the SubscriberDevice object.
SubscriberDevice testSubscriberDevice = 
    new SubscriberDevice(testInstance);

Платформы

Платформы разработки

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

Целевые платформы

Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.

См. также

Справочник

SubscriberDevice Class
SubscriberDevice Members
Microsoft.SqlServer.NotificationServices Namespace