次の方法で共有


ReceiveActivity.Context プロパティ

定義

このアクティビティのコンテキスト情報を取得します。

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ Context { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Collections.Generic.IDictionary<string,string> Context { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Context : System.Collections.Generic.IDictionary<string, string>
Public ReadOnly Property Context As IDictionary(Of String, String)

プロパティ値

IDictionary<String,String>

このアクティビティのコンテキスト情報を格納している IDictionary<TKey,TValue> オブジェクト。

属性

次の例は、Context プロパティにアクセスする方法を示しています。

// Create EndpointAddress from Uri and ReceiveActivity
static public EndpointAddress CreateEndpointAddress(string uri, ReceiveActivity receiveActivity)
{
    return CreateEndpointAddress(uri, receiveActivity.Context);
}

注釈

コンテキスト情報は、相関関係の識別など、通信しているクライアントとサービス間の通信に使用されています。

適用対象