次の方法で共有


Subscriber.Update Method

サブスクライバ レコードの情報を更新します。

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

構文

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

解説

サブスクライバ レコードを更新するには、レコードを有効にする必要があります。

サブスクライバ ID を設定すると、以降の更新はすべて、最初に取得されたレコードではなく、そのサブスクライバ ID で識別されたレコードで実行されます。

使用例

Update メソッドを使用してサブスクライバ情報を変更する例を次に示します。

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 subscriber ID so that the correct
' subscriber record is updated.
testSubscriber.SubscriberId = "TestUser1"
 
' Change subscriber data, then update the database.
testSubscriber.Enabled = False
testSubscriber.Update()
string instanceName = "Tutorial";    

// Create the NSInstance object.
NSInstance testInstance = new NSInstance(instanceName);

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

// Set the subscriber ID so that the correct
// subscriber record is updated.
testSubscriber.SubscriberId = "TestUser1";

// Change subscriber data, then update the database.
testSubscriber.Enabled = false;
testSubscriber.Update();

スレッド セーフ

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

プラットフォーム

開発プラットフォーム

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

対象プラットフォーム

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

参照

関連項目

Subscriber Class
Subscriber Members
Microsoft.SqlServer.NotificationServices Namespace