Subscription.SubscriberId Property
このサブスクリプションのサブスクライバ ID を返します。値の設定も可能です。
名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)
構文
'宣言
Public Property SubscriberId As String
public string SubscriberId { get; set; }
public:
virtual property String^ SubscriberId {
String^ get () sealed;
void set (String^ value) sealed;
}
/** @property */
public final String get_SubscriberId ()
/** @property */
public final void set_SubscriberId (String value)
public final function get SubscriberId () : String
public final function set SubscriberId (value : String)
プロパティ値
このサブスクリプションのサブスクライバ ID を表す String です。
解説
サブスクライバ ID は、サブスクリプションに関連付けられているサブスクライバを特定します。
使用例
' Create the NSInstance object.
Dim testInstance As New NSInstance("Tutorial")
' Create the NSApplication object.
Dim testApplication As New NSApplication(testInstance, "Weather")
' Create the Subscription object.
Dim testSubscription As _
New Subscription(testApplication, "WeatherCity")
' Set the properties that describe the subscription record.
testSubscription.Enabled = True
testSubscription.SubscriberId = "TestUser1"
' Set the subscription data fields (as defined in the ADF),
' using the indexer to set fields by field name.
testSubscription("DeviceName") = "Work e-mail"
testSubscription("SubscriberLocale") = "en-US"
testSubscription("City") = "Shoreline"
' Add the subscription to the database.
testSubscription.Add()
// Create the NSInstance object.
NSInstance testInstance = new NSInstance("Tutorial");
// Create the NSApplication object.
NSApplication testApplication =
new NSApplication(testInstance, "Weather");
// Create the Subscription object.
Subscription testSubscription =
new Subscription(testApplication, "WeatherCity");
// Set the properties that describe the subscription record.
testSubscription.Enabled = true;
testSubscription.SubscriberId = "TestUser1";
// Set the subscription data fields (as defined in the ADF),
// using the indexer to set fields by field name.
testSubscription["DeviceName"] = "Work e-mail";
testSubscription["SubscriberLocale"] = "en-US";
testSubscription["City"] = "Shoreline";
// Add the subscription to the database.
testSubscription.Add();
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Subscription Class
Subscription Members
Microsoft.SqlServer.NotificationServices Namespace