Udostępnij za pośrednictwem


IContextManager.GetContext Metoda

Definicja

Pobiera kontekst.

public:
 System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ GetContext();
public System.Collections.Generic.IDictionary<string,string> GetContext ();
abstract member GetContext : unit -> System.Collections.Generic.IDictionary<string, string>
Public Function GetContext () As IDictionary(Of String, String)

Zwraca

Pary IDictionary<TKey,TValue> klucz/wartość z przestrzenią nazw i nazwą kontekstu.

Przykłady

Poniższy kod pokazuje, jak kontekst można uzyskać z typu wystąpienia serwera proxy na kliencie.

IDictionary<string, string> context;  
CalculatorProxy proxy;  
IContextManager cm = proxy.InnerChannel.GetProperty<IContextManager>();  
if (cm != null)  
    context = cm.GetContext();  

Dotyczy