建立 SubscriberDevice 物件
使用 SubscriberDevice 類別來加入、刪除和更新 Notification Services 執行個體中的訂閱者裝置資訊下列範例會顯示如何利用 Managed 程式碼來建立 SubscriberDevice 物件,利用 Microsoft Visual Basic Scripting Edition (VBScript) 來說明 COM Interop。
Managed 程式碼範例
下列程式碼範例顯示如何使用參數化建構函式傳入所要的 Notification Services 執行個體的名稱,來建立及初始化 SubscriberDevice 物件。SubscriberDevice 物件立即可用。
string instanceName = "Tutorial";
// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);
// Create the SubscriberDevice object.
SubscriberDevice testSubscriberDevice =
new SubscriberDevice(testInstance);
COM Interop 範例
下列 VBScript 範例顯示如何使用無參數建構函式來建立物件,然後呼叫 Initialize 方法將它初始化,來透過 COM Interop 建立及初始化 SubscriberDevice 物件:
Dim testInstance, testSubscriberDevice
const instanceName = "Tutorial"
' Create the NSInstance object.
set testInstance = _
WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.NSInstance")
testInstance.Initialize instanceName
' Create the SubscriberDevice object.
set testSubscriberDevice = _
WScript.CreateObject( _
"Microsoft.SqlServer.NotificationServices.SubscriberDevice")
testSubscriberDevice.Initialize (testInstance)
請參閱
概念
新增訂閱者裝置
更新訂閱者裝置
刪除訂閱者裝置
擴展傳遞通道清單