ReceiveActivity.Context Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
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
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.