Udostępnij za pośrednictwem


IContextManager.SetContext(IDictionary<String,String>) Metoda

Definicja

Ustawia kontekst.

public:
 void SetContext(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public void SetContext (System.Collections.Generic.IDictionary<string,string> context);
abstract member SetContext : System.Collections.Generic.IDictionary<string, string> -> unit
Public Sub SetContext (context As IDictionary(Of String, String))

Parametry

context
IDictionary<String,String>

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

Przykłady

Poniższy kod pokazuje, jak można ustawić kontekst na kliencie.

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

Dotyczy