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

Definition

Sets the context.

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

Parameters

context
IDictionary<String,String>

The IDictionary<TKey,TValue> of key/value pairs with the namespace and name of the context that is set.

Examples

The following code shows how the context can be set on the client.

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

Applies to