共用方式為


IContextManager.GetContext 方法

定義

取得內容。

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)

傳回

索引鍵/值組的 IDictionary<TKey,TValue>,含命名空間與內容名稱。

範例

下列程式碼說明如何從用戶端的型別 Proxy 執行個體取得內容。

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

適用於