共用方式為


CallbackContextMessageProperty 建構函式

定義

初始化 CallbackContextMessageProperty 類別的新執行個體。

多載

CallbackContextMessageProperty(IDictionary<String,String>)

使用指定的內容初始化 CallbackContextMessageProperty 類別的新執行個體。

CallbackContextMessageProperty(EndpointAddress)

使用指定的 CallbackContextMessageProperty 初始化 EndpointAddress 類別的新執行個體。

CallbackContextMessageProperty(EndpointAddress, IDictionary<String,String>)

使用包含內容資訊的指定 CallbackContextMessagePropertyEndpointAddress,初始化 IDictionary<TKey,TValue> 類別的新執行個體。

CallbackContextMessageProperty(String, IDictionary<String,String>)

使用指定接聽位址和內容資訊,初始化 CallbackContextMessageProperty 類別的新執行個體。

CallbackContextMessageProperty(Uri, IDictionary<String,String>)

使用指定接聽位址和內容資訊,初始化 CallbackContextMessageProperty 類別的新執行個體。

CallbackContextMessageProperty(IDictionary<String,String>)

使用指定的內容初始化 CallbackContextMessageProperty 類別的新執行個體。

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

參數

context
IDictionary<String,String>

訊息中包含的資訊,這是進行通訊之用戶端和服務執行個體之間可識別的資訊。

適用於

CallbackContextMessageProperty(EndpointAddress)

使用指定的 CallbackContextMessageProperty 初始化 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)

參數

callbackAddress
EndpointAddress

回呼位址。

備註

回呼位址是服務用來回呼用戶端的端點位址。

適用於

CallbackContextMessageProperty(EndpointAddress, IDictionary<String,String>)

使用包含內容資訊的指定 CallbackContextMessagePropertyEndpointAddress,初始化 IDictionary<TKey,TValue> 類別的新執行個體。

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

參數

listenAddress
EndpointAddress

用戶端接聽的端點位址。

context
IDictionary<String,String>

訊息中包含的資訊,這是進行通訊之用戶端和服務執行個體之間可識別的資訊。

備註

內容資訊可包含用戶端執行個體與對話資訊。

適用於

CallbackContextMessageProperty(String, IDictionary<String,String>)

使用指定接聽位址和內容資訊,初始化 CallbackContextMessageProperty 類別的新執行個體。

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

參數

listenAddress
String

用戶端接聽的端點位址。

context
IDictionary<String,String>

訊息中包含的資訊,這是進行通訊之用戶端和服務執行個體之間可識別的資訊。

適用於

CallbackContextMessageProperty(Uri, IDictionary<String,String>)

使用指定接聽位址和內容資訊,初始化 CallbackContextMessageProperty 類別的新執行個體。

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

參數

listenAddress
Uri

用戶端接聽的端點位址。

context
IDictionary<String,String>

訊息中包含的資訊,這是進行通訊之用戶端和服務執行個體之間可識別的資訊。

適用於