IContextManager.GetContext Methode

Definition

Ruft den Kontext ab.

public:
 System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ GetContext();
public System.Collections.Generic.IDictionary<string,string> GetContext ();
abstract member GetContext : unit -> System.Collections.Generic.IDictionary<string, string>
Public Function GetContext () As IDictionary(Of String, String)

Gibt zurück

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

Beispiele

Im folgenden Code wird das Abrufen des Kontexts von einer typisierten Proxyinstanz auf dem Client veranschaulicht:

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

Gilt für: