DeliveryChannelArgument.Value Property
配信チャネル引数の値を取得または設定します。
名前空間: Microsoft.SqlServer.Management.Nmo
アセンブリ: Microsoft.SqlServer.Smo (microsoft.sqlserver.smo.dll 内)
構文
'宣言
Public Property Value As String
public string Value { get; set; }
public:
property String^ Value {
String^ get ();
void set (String^ value);
}
/** @property */
public String get_Value ()
/** @property */
public void set_Value (String value)
public function get Value () : String
public function set Value (value : String)
プロパティ値
配信チャネル引数の値を示す最大 4,000 文字の String です。
解説
引数の名前と値は、初期時にディストリビュータによって、関連付けられた配信プロトコルの Initialize メソッドに渡されます。
使用例
次の例は、カスタム配信チャネルとその引数を定義する方法を示しています。
// Define a delivery channel for the custom protocol
DeliveryChannel customChannel =
new DeliveryChannel(myInstance, "MyCustomChannel");
customChannel.ProtocolName = "MyCustomProtocol";
// Define and add arguments for the custom delivery channel
DeliveryChannelArgument myArg1 =
new DeliveryChannelArgument(customChannel, "Arg1");
myArg1.Value = "Value1";
customChannel.DeliveryChannelArguments.Add(myArg1);
// Add the custom delivery channel to the instance
myInstance.DeliveryChannels.Add(customChannel);
' Define a delivery channel for the custom protocol
Dim customChannel As DeliveryChannel = _
New DeliveryChannel(myInstance, "MyCustomChannel")
customChannel.ProtocolName = "MyCustomProtocol"
' Define and add arguments for the custom delivery channel
Dim myArg1 As DeliveryChannelArgument = _
New DeliveryChannelArgument(customChannel, "Arg1")
myArg1.Value = "Value1"
customChannel.DeliveryChannelArguments.Add(myArg1)
' Add the custom delivery channel to the instance
myInstance.DeliveryChannels.Add(customChannel)
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
DeliveryChannelArgument Class
DeliveryChannelArgument Members
Microsoft.SqlServer.Management.Nmo Namespace
その他の技術情報
配信チャネルの定義
DeliveryChannel/Arguments/Argument の Value 要素 (ICF)