Sdílet prostřednictvím


EndpointDispatcher Konstruktory

Definice

Inicializuje novou instanci EndpointDispatcher třídy.

Přetížení

EndpointDispatcher()
EndpointDispatcher(EndpointAddress, String, String)

Inicializuje novou instanci EndpointDispatcher třídy se zadanou adresou, názvem kontraktu a oborem názvů kontraktu.

EndpointDispatcher(EndpointAddress, String, String, Boolean)

Inicializuje novou instanci EndpointDispatcher třídy se zadanou adresou, názvem kontraktu, oborem názvů kontraktu a tím, jestli je koncový bod veřejným systémovým koncovým bodem.

EndpointDispatcher()

Zdroj:
EndpointDispatcher.cs
Zdroj:
EndpointDispatcher.cs
Zdroj:
EndpointDispatcher.cs
public:
 EndpointDispatcher();
public EndpointDispatcher ();
Public Sub New ()

Platí pro

EndpointDispatcher(EndpointAddress, String, String)

Inicializuje novou instanci EndpointDispatcher třídy se zadanou adresou, názvem kontraktu a oborem názvů kontraktu.

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)

Parametry

address
EndpointAddress

Adresa koncového bodu.

contractName
String

Název kontraktu koncového bodu.

contractNamespace
String

Obor názvů kontraktu koncového bodu.

Poznámky

Pomocí tohoto konstruktoru vytvořte koncový bod, který není v popisu.

Platí pro

EndpointDispatcher(EndpointAddress, String, String, Boolean)

Inicializuje novou instanci EndpointDispatcher třídy se zadanou adresou, názvem kontraktu, oborem názvů kontraktu a tím, jestli je koncový bod veřejným systémovým koncovým bodem.

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)

Parametry

address
EndpointAddress

Adresa koncového bodu.

contractName
String

Název kontraktu koncového bodu.

contractNamespace
String

Obor názvů kontraktu koncového bodu.

isSystemEndpoint
Boolean

truek označení, že koncový bod je vytvořen interně serverem, nikoli uživatelem; v opačném případě . false

Platí pro