Sdílet prostřednictvím


ReceiveActivity.Context Vlastnost

Definice

Získá kontextové informace pro tuto aktivitu.

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)

Hodnota vlastnosti

IDictionary<String,String>

Objekt IDictionary<TKey,TValue> , který obsahuje kontextové informace o této aktivitě.

Atributy

Příklady

Následující příklad ukazuje, jak získat přístup k Context vlastnosti.

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

Poznámky

Kontextové informace slouží ke komunikaci mezi klientem a službou, se kterými komunikuje, a zahrnuje takové věci, jako je identifikace korelace.

Platí pro