Sdílet prostřednictvím


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

Definice

Nastaví kontext.

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>

Pár IDictionary<TKey,TValue> klíč/hodnota s oborem názvů a názvem nastaveného kontextu.

Příklady

Následující kód ukazuje, jak lze nastavit kontext v klientovi.

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

Platí pro