다음을 통해 공유


SubscriberDevice 개체 만들기

SubscriberDevice 클래스를 사용하여 Notification Services 인스턴스에 구독자 장치 정보를 추가, 삭제 및 업데이트할 수 있습니다. 아래 예에서는 관리 코드를 사용하여 SubscriberDevice 개체를 만드는 방법과 COM interop을 나타내는 Microsoft VBScript(Visual Basic Scripting Edition)를 사용하는 방법을 보여 줍니다.

관리 코드 예

다음 코드 예에서는 매개 변수가 있는 생성자를 사용하여 SubscriberDevice 개체를 만들고 초기화한 후 원하는 Notification Services 인스턴스 이름에 전달하는 방법을 보여 줍니다. 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 예에서는 매개 변수가 없는 생성자를 사용하여 SubscriberDevice 개체를 만든 후 Initialize 메서드를 호출하여 해당 개체를 초기화하는 방법을 보여 줍니다.

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)

참고 항목

개념

구독자 장치 추가
구독자 장치 업데이트
구독자 장치 삭제
배달 채널 목록 채우기

도움말 및 정보

SQL Server 2005 지원 받기