구독자 장치 업데이트
SubscriberDevice 클래스의 Update 메서드를 사용하여 Notification Services 인스턴스 데이터베이스의 기존 구독자 장치 데이터를 수정할 수 있습니다. 아래 예에서는 구독자 장치를 업데이트하기 위해 관리 코드를 사용하는 방법과 COM interop을 나타내는 Microsoft VBScript(Visual Basic Scripting Edition)를 사용하는 방법을 보여 줍니다.
관리 코드 예
다음 코드 예에서는 관리 코드에서 SubscriberDevice 개체를 사용하여 구독자 장치를 업데이트하는 방법을 보여 줍니다.
string instanceName = "Tutorial";
// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);
// Create the SubscriberDevice object.
SubscriberDevice testSubscriberDevice =
new SubscriberDevice(testInstance);
// Set the subscriber ID and device name
// so that the correct record is updated.
testSubscriberDevice.SubscriberId = "TestUser1";
testSubscriberDevice.DeviceName = "Work e-mail";
// Modify the subscriber device properties
// and update the record.
testSubscriberDevice.DeviceAddress = "stephanieb@adventure-works.com";
testSubscriberDevice.DeviceTypeName = "e-mail";
testSubscriberDevice.DeliveryChannelName = "FileChannel";
testSubscriberDevice.Update();
COM Interop 예
다음 VBScript 예에서는 비관리 코드에서 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)
' Set the subscriber ID and device name
' so that the correct record is updated.
testSubscriberDevice.SubscriberId = "TestUser2"
testSubscriberDevice.DeviceName = "Work e-mail"
' Modify the subscriber device properties
' and update the record.
testSubscriberDevice.DeviceAddress = "davidb@adventure-works.com"
testSubscriberDevice.DeviceTypeName = "e-mail"
testSubscriberDevice.DeliveryChannelName = "FileChannel"
testSubscriberDevice.Update()
wscript.echo "Subscriber device updated."
참고 항목
개념
SubscriberDevice 개체 만들기
구독자 장치 추가
구독자 장치 삭제
배달 채널 목록 채우기