次の方法で共有


EndpointDispatcher コンストラクター

定義

EndpointDispatcher クラスの新しいインスタンスを初期化します。

オーバーロード

EndpointDispatcher()
EndpointDispatcher(EndpointAddress, String, String)

指定したアドレス、コントラクト名、およびコントラクト名前空間で、EndpointDispatcher クラスの新しいインスタンスを初期化します。

EndpointDispatcher(EndpointAddress, String, String, Boolean)

指定したアドレス、コントラクト名、およびコントラクト名前空間を使用し、エンドポイントがパブリック システム エンドポイントかどうかに従って、EndpointDispatcher クラスの新しいインスタンスを初期化します。

EndpointDispatcher()

ソース:
EndpointDispatcher.cs
ソース:
EndpointDispatcher.cs
ソース:
EndpointDispatcher.cs
public:
 EndpointDispatcher();
public EndpointDispatcher ();
Public Sub New ()

適用対象

EndpointDispatcher(EndpointAddress, String, String)

指定したアドレス、コントラクト名、およびコントラクト名前空間で、EndpointDispatcher クラスの新しいインスタンスを初期化します。

public:
 EndpointDispatcher(System::ServiceModel::EndpointAddress ^ address, System::String ^ contractName, System::String ^ contractNamespace);
public EndpointDispatcher (System.ServiceModel.EndpointAddress address, string contractName, string contractNamespace);
new System.ServiceModel.Dispatcher.EndpointDispatcher : System.ServiceModel.EndpointAddress * string * string -> System.ServiceModel.Dispatcher.EndpointDispatcher
Public Sub New (address As EndpointAddress, contractName As String, contractNamespace As String)

パラメーター

address
EndpointAddress

エンドポイント アドレス。

contractName
String

エンドポイント コントラクトの名前です。

contractNamespace
String

エンドポイント コントラクトの名前空間。

注釈

このコンストラクターは、記述に含まれないエンドポイントを作成するために使用します。

適用対象

EndpointDispatcher(EndpointAddress, String, String, Boolean)

指定したアドレス、コントラクト名、およびコントラクト名前空間を使用し、エンドポイントがパブリック システム エンドポイントかどうかに従って、EndpointDispatcher クラスの新しいインスタンスを初期化します。

public:
 EndpointDispatcher(System::ServiceModel::EndpointAddress ^ address, System::String ^ contractName, System::String ^ contractNamespace, bool isSystemEndpoint);
public EndpointDispatcher (System.ServiceModel.EndpointAddress address, string contractName, string contractNamespace, bool isSystemEndpoint);
new System.ServiceModel.Dispatcher.EndpointDispatcher : System.ServiceModel.EndpointAddress * string * string * bool -> System.ServiceModel.Dispatcher.EndpointDispatcher
Public Sub New (address As EndpointAddress, contractName As String, contractNamespace As String, isSystemEndpoint As Boolean)

パラメーター

address
EndpointAddress

エンドポイント アドレス。

contractName
String

エンドポイント コントラクトの名前です。

contractNamespace
String

エンドポイント コントラクトの名前空間。

isSystemEndpoint
Boolean

エンドポイントがユーザーではなくサーバーによって内部で作成されることを示す場合は、true。それ以外の場合は、false

適用対象