ContextMessageProperty 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 ContextMessageProperty 类的新实例。
重载
ContextMessageProperty() |
初始化 ContextMessageProperty 类的新实例。 |
ContextMessageProperty(IDictionary<String,String>) |
用指定的上下文初始化 ContextMessageProperty 类的新实例。 |
ContextMessageProperty()
初始化 ContextMessageProperty 类的新实例。
public:
ContextMessageProperty();
public ContextMessageProperty ();
Public Sub New ()
适用于
ContextMessageProperty(IDictionary<String,String>)
用指定的上下文初始化 ContextMessageProperty 类的新实例。
public:
ContextMessageProperty(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public ContextMessageProperty (System.Collections.Generic.IDictionary<string,string> context);
new System.ServiceModel.Channels.ContextMessageProperty : System.Collections.Generic.IDictionary<string, string> -> System.ServiceModel.Channels.ContextMessageProperty
Public Sub New (context As IDictionary(Of String, String))
参数
- context
- IDictionary<String,String>
包含用于将消息与客户端和服务之间的特定对话相关联的上下文信息的 IDictionary<TKey,TValue>。
例外
context
为 null
。