SendActivity.Context 属性

定义

返回一个字典,该字典包含用于客户端与服务(将与客户端通信)之间的通信的上下文,包括关联标识之类的内容。

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ Context { System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ get(); void set(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Collections.Generic.IDictionary<string,string> Context { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Context : System.Collections.Generic.IDictionary<string, string> with get, set
Public Property Context As IDictionary(Of String, String)

属性值

IDictionary<String,String>

一个基于字典的集合,包含 XmlQualifiedName 键及其关联的 String 值。

属性

示例

下面的示例演示如何访问 Context 属性。 此示例从 CalculatorClient SDK 示例改写而来。

static public void ApplyContext(SendActivity activity, IDictionary<string, string> context)
{
    if (activity.ExecutionStatus == ActivityExecutionStatus.Initialized)
    {
        activity.Context = context;
    }
}

注解

上下文信息用于客户端与服务(将与客户端通信)之间的通信并包括关联标识之类的内容。

适用于