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

Definition

Legt den Kontext fest.

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))

Parameter

context
IDictionary<String,String>

Das IDictionary<TKey,TValue> von Schlüssel/Wert-Paaren mit dem Namespace und dem Namen des festgelegten Kontexts.

Beispiele

Im folgenden Code wird gezeigt, wie der Kontext auf dem Client festgelegt werden kann:

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

Gilt für: