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);
平台
开发平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
目标平台
有关支持的平台列表,请参阅安装 SQL Server 2005 的硬件和软件要求。
请参阅
参考
SubscriberDevice Class
SubscriberDevice Members
Microsoft.SqlServer.NotificationServices Namespace