CallbackContextMessageProperty Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CallbackContextMessageProperty class.
Overloads
CallbackContextMessageProperty(IDictionary<String,String>) |
Initializes a new instance of the CallbackContextMessageProperty class with the specified context. |
CallbackContextMessageProperty(EndpointAddress) |
Initializes a new instance of the CallbackContextMessageProperty class with the specified EndpointAddress. |
CallbackContextMessageProperty(EndpointAddress, IDictionary<String,String>) |
Initializes a new instance of the CallbackContextMessageProperty class with the specified EndpointAddress and a IDictionary<TKey,TValue> that contains context information. |
CallbackContextMessageProperty(String, IDictionary<String,String>) |
Initializes a new instance of the CallbackContextMessageProperty class with the specified listen address and context information. |
CallbackContextMessageProperty(Uri, IDictionary<String,String>) |
Initializes a new instance of the CallbackContextMessageProperty class with the specified listen address and context information. |
CallbackContextMessageProperty(IDictionary<String,String>)
Initializes a new instance of the CallbackContextMessageProperty class with the specified context.
public:
CallbackContextMessageProperty(System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public CallbackContextMessageProperty (System.Collections.Generic.IDictionary<string,string> context);
new System.ServiceModel.Channels.CallbackContextMessageProperty : System.Collections.Generic.IDictionary<string, string> -> System.ServiceModel.Channels.CallbackContextMessageProperty
Public Sub New (context As IDictionary(Of String, String))
Parameters
- context
- IDictionary<String,String>
Information contained in the message which is identifiable by the client and the service instance between which the communication is taking place.
Applies to
CallbackContextMessageProperty(EndpointAddress)
Initializes a new instance of the CallbackContextMessageProperty class with the specified EndpointAddress.
public:
CallbackContextMessageProperty(System::ServiceModel::EndpointAddress ^ callbackAddress);
public CallbackContextMessageProperty (System.ServiceModel.EndpointAddress callbackAddress);
new System.ServiceModel.Channels.CallbackContextMessageProperty : System.ServiceModel.EndpointAddress -> System.ServiceModel.Channels.CallbackContextMessageProperty
Public Sub New (callbackAddress As EndpointAddress)
Parameters
- callbackAddress
- EndpointAddress
The callback address.
Remarks
The callback address is the endpoint address that the service uses to call back to the client.
Applies to
CallbackContextMessageProperty(EndpointAddress, IDictionary<String,String>)
Initializes a new instance of the CallbackContextMessageProperty class with the specified EndpointAddress and a IDictionary<TKey,TValue> that contains context information.
public:
CallbackContextMessageProperty(System::ServiceModel::EndpointAddress ^ listenAddress, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public CallbackContextMessageProperty (System.ServiceModel.EndpointAddress listenAddress, System.Collections.Generic.IDictionary<string,string> context);
new System.ServiceModel.Channels.CallbackContextMessageProperty : System.ServiceModel.EndpointAddress * System.Collections.Generic.IDictionary<string, string> -> System.ServiceModel.Channels.CallbackContextMessageProperty
Public Sub New (listenAddress As EndpointAddress, context As IDictionary(Of String, String))
Parameters
- listenAddress
- EndpointAddress
The endpoint address the client listens on.
- context
- IDictionary<String,String>
Information contained in the message which is identifiable by the client and the service instance between which the communication is taking place.
Remarks
The context information may include client instance and conversation information.
Applies to
CallbackContextMessageProperty(String, IDictionary<String,String>)
Initializes a new instance of the CallbackContextMessageProperty class with the specified listen address and context information.
public:
CallbackContextMessageProperty(System::String ^ listenAddress, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public CallbackContextMessageProperty (string listenAddress, System.Collections.Generic.IDictionary<string,string> context);
new System.ServiceModel.Channels.CallbackContextMessageProperty : string * System.Collections.Generic.IDictionary<string, string> -> System.ServiceModel.Channels.CallbackContextMessageProperty
Public Sub New (listenAddress As String, context As IDictionary(Of String, String))
Parameters
- listenAddress
- String
The endpoint address the client listens on.
- context
- IDictionary<String,String>
Information contained in the message which is identifiable by the client and the service instance between which the communication is taking place.
Applies to
CallbackContextMessageProperty(Uri, IDictionary<String,String>)
Initializes a new instance of the CallbackContextMessageProperty class with the specified listen address and context information.
public:
CallbackContextMessageProperty(Uri ^ listenAddress, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ context);
public CallbackContextMessageProperty (Uri listenAddress, System.Collections.Generic.IDictionary<string,string> context);
new System.ServiceModel.Channels.CallbackContextMessageProperty : Uri * System.Collections.Generic.IDictionary<string, string> -> System.ServiceModel.Channels.CallbackContextMessageProperty
Public Sub New (listenAddress As Uri, context As IDictionary(Of String, String))
Parameters
- listenAddress
- Uri
The endpoint address the client listens on.
- context
- IDictionary<String,String>
Information contained in the message which is identifiable by the client and the service instance between which the communication is taking place.