SendParametersContent コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
SendParametersContent クラスの新しいインスタンスを初期化します。
オーバーロード
SendParametersContent() |
SendParametersContent クラスの新しいインスタンスを初期化します。 |
SendParametersContent(IDictionary<String,InArgument>) |
指定したパラメーターを使用して、SendParametersContent クラスの新しいインスタンスを初期化します。 |
SendParametersContent()
SendParametersContent クラスの新しいインスタンスを初期化します。
public:
SendParametersContent();
public SendParametersContent ();
Public Sub New ()
適用対象
SendParametersContent(IDictionary<String,InArgument>)
指定したパラメーターを使用して、SendParametersContent クラスの新しいインスタンスを初期化します。
public:
SendParametersContent(System::Collections::Generic::IDictionary<System::String ^, System::Activities::InArgument ^> ^ parameters);
public SendParametersContent (System.Collections.Generic.IDictionary<string,System.Activities.InArgument> parameters);
new System.ServiceModel.Activities.SendParametersContent : System.Collections.Generic.IDictionary<string, System.Activities.InArgument> -> System.ServiceModel.Activities.SendParametersContent
Public Sub New (parameters As IDictionary(Of String, InArgument))
パラメーター
- parameters
- IDictionary<String,InArgument>
パラメーター名を含むキーと引数を含む値で構成された、キーと値のペアのコレクション。
例
次の例は、この SendParametersContent コンストラクターを使用する方法を示しています。
new SendReply
{
Request = receiveString,
Content = new SendParametersContent
{
Parameters =
{
{ "echo", new InArgument<string>(echo) }
},
}
},