Aracılığıyla paylaş


IContextManager.SetContext(IDictionary<String,String>) Yöntem

Tanım

Bağlamı ayarlar.

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

Parametreler

context
IDictionary<String,String>

IDictionary<TKey,TValue> Anahtar/değer çiftlerinin ad alanı ve ayarlanan bağlamın adı.

Örnekler

Aşağıdaki kod, istemcide bağlamın nasıl ayarlanabileceğini gösterir.

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

Şunlara uygulanır