次の方法で共有


Subscriber.Add Method

Notification Services データベースにサブスクライバ レコードを追加します。

名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)

構文

'宣言
Public Sub Add
public void Add ()
public:
virtual void Add () sealed
public final void Add ()
public final function Add ()

使用例

Add メソッドを使用してサブスクライバを追加する例を次に示します。

Dim instanceName As String =  "Tutorial" 
 
' Create the NSInstance object.
Dim testInstance As NSInstance =  New NSInstance(instanceName) 
 
' Create the Subscriber object.
Dim testSubscriber As Subscriber =  New Subscriber(testInstance) 
 
 
' Set the properties that describe the subscriber record.
testSubscriber.Enabled = True
testSubscriber.SubscriberId = "TestUser1"
 
' Add the subscriber record to the database.
testSubscriber.Add()
// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);

// Create the Subscriber object.
Subscriber testSubscriber = new Subscriber(testInstance);
        

// Set the properties that describe the subscriber record.
testSubscriber.Enabled = true;
testSubscriber.SubscriberId = "TestUser1";

// Add the subscriber record to the database.
testSubscriber.Add();

スレッド セーフ

この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。

プラットフォーム

開発プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

対象プラットフォーム

サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。

参照

関連項目

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace