EndpointDispatcher Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der EndpointDispatcher-Klasse.
Überlädt
EndpointDispatcher(EndpointAddress, String, String) |
Initialisiert eine neue Instanz der EndpointDispatcher-Klasse mit der angegebenen Adresse und dem angegebenen Namen und Namespace des Vertrags. |
EndpointDispatcher(EndpointAddress, String, String, Boolean) |
Initialisiert eine neue Instanz der EndpointDispatcher-Klasse mit der angegebenen Adresse, dem Vertragsnamen, dem Namespace des Vertrags und der Angabe, ob der Endpunkt ein öffentlicher Systemendpunkt ist. |
EndpointDispatcher(EndpointAddress, String, String)
Initialisiert eine neue Instanz der EndpointDispatcher-Klasse mit der angegebenen Adresse und dem angegebenen Namen und Namespace des Vertrags.
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)
Parameter
- address
- EndpointAddress
Die Endpunktadresse.
- contractName
- String
Der Name des Endpunktvertrags.
- contractNamespace
- String
Der Namespace des Endpunktvertrags.
Hinweise
Verwenden Sie diesen Konstruktor, um einen Endpunkt zu erstellen, der sich nicht in der Beschreibung befindet.
Gilt für:
EndpointDispatcher(EndpointAddress, String, String, Boolean)
Initialisiert eine neue Instanz der EndpointDispatcher-Klasse mit der angegebenen Adresse, dem Vertragsnamen, dem Namespace des Vertrags und der Angabe, ob der Endpunkt ein öffentlicher Systemendpunkt ist.
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)
Parameter
- address
- EndpointAddress
Die Endpunktadresse.
- contractName
- String
Der Name des Endpunktvertrags.
- contractNamespace
- String
Der Namespace des Endpunktvertrags.
- isSystemEndpoint
- Boolean
true
, um anzugeben, dass der Endpunkt intern vom Server und nicht vom Benutzer erstellt wird, andernfalls false
.