ContextMessageProperty Constructors

Definition

Initializes a new instance of the ContextMessageProperty class.

Overloads

ContextMessageProperty()

Initializes a new instance of the ContextMessageProperty class.

ContextMessageProperty(IDictionary<String,String>)

Initializes a new instance of the ContextMessageProperty class with a specified context.

ContextMessageProperty()

Initializes a new instance of the ContextMessageProperty class.

public:
 ContextMessageProperty();
public ContextMessageProperty ();
Public Sub New ()

Applies to

ContextMessageProperty(IDictionary<String,String>)

Initializes a new instance of the ContextMessageProperty class with a specified context.

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

Parameters

context
IDictionary<String,String>

The IDictionary<TKey,TValue> that contains the context information used to correlate messages with a specific conversation between a client and a service.

Exceptions

context is null.

Applies to