ServiceConfiguration.AddServiceEndpoint Methode

Definitie

Hiermee voegt u een service-eindpunt toe aan de serviceconfiguratie.

Overloads

Name Description
AddServiceEndpoint(ServiceEndpoint)

Voegt het opgegeven service-eindpunt toe aan de configuratieservice.

AddServiceEndpoint(Type, Binding, String)

Hiermee voegt u een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding en eindpuntadres.

AddServiceEndpoint(Type, Binding, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding en URI die het eindpuntadres bevat.

AddServiceEndpoint(Type, Binding, String, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding, eindpuntadres en URI die het adres bevat waarop het luistert.

AddServiceEndpoint(Type, Binding, Uri, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met het opgegeven contract, de binding en URI's die het eindpunt en de luisteradressen bevatten.

AddServiceEndpoint(ServiceEndpoint)

Voegt het opgegeven service-eindpunt toe aan de configuratieservice.

public:
 void AddServiceEndpoint(System::ServiceModel::Description::ServiceEndpoint ^ endpoint);
public void AddServiceEndpoint(System.ServiceModel.Description.ServiceEndpoint endpoint);
member this.AddServiceEndpoint : System.ServiceModel.Description.ServiceEndpoint -> unit
Public Sub AddServiceEndpoint (endpoint As ServiceEndpoint)

Parameters

endpoint
ServiceEndpoint

Het service-eindpunt.

Van toepassing op

AddServiceEndpoint(Type, Binding, String)

Hiermee voegt u een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding en eindpuntadres.

public:
 System::ServiceModel::Description::ServiceEndpoint ^ AddServiceEndpoint(Type ^ contractType, System::ServiceModel::Channels::Binding ^ binding, System::String ^ address);
public System.ServiceModel.Description.ServiceEndpoint AddServiceEndpoint(Type contractType, System.ServiceModel.Channels.Binding binding, string address);
member this.AddServiceEndpoint : Type * System.ServiceModel.Channels.Binding * string -> System.ServiceModel.Description.ServiceEndpoint
Public Function AddServiceEndpoint (contractType As Type, binding As Binding, address As String) As ServiceEndpoint

Parameters

contractType
Type

Het type contract voor het eindpunt toegevoegd.

binding
Binding

De binding voor het eindpunt is toegevoegd.

address
String

Het adres voor het eindpunt is toegevoegd.

Retouren

Het service-eindpunt is toegevoegd aan de configuratieservice.

Van toepassing op

AddServiceEndpoint(Type, Binding, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding en URI die het eindpuntadres bevat.

public:
 System::ServiceModel::Description::ServiceEndpoint ^ AddServiceEndpoint(Type ^ contractType, System::ServiceModel::Channels::Binding ^ binding, Uri ^ address);
public System.ServiceModel.Description.ServiceEndpoint AddServiceEndpoint(Type contractType, System.ServiceModel.Channels.Binding binding, Uri address);
member this.AddServiceEndpoint : Type * System.ServiceModel.Channels.Binding * Uri -> System.ServiceModel.Description.ServiceEndpoint
Public Function AddServiceEndpoint (contractType As Type, binding As Binding, address As Uri) As ServiceEndpoint

Parameters

contractType
Type

Het type contract voor het eindpunt toegevoegd.

binding
Binding

De binding voor het eindpunt is toegevoegd.

address
Uri

De URI die het adres voor het eindpunt bevat dat is toegevoegd.

Retouren

Het service-eindpunt is toegevoegd aan de configuratieservice.

Van toepassing op

AddServiceEndpoint(Type, Binding, String, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met een opgegeven contract, binding, eindpuntadres en URI die het adres bevat waarop het luistert.

public:
 System::ServiceModel::Description::ServiceEndpoint ^ AddServiceEndpoint(Type ^ contractType, System::ServiceModel::Channels::Binding ^ binding, System::String ^ address, Uri ^ listenUri);
public System.ServiceModel.Description.ServiceEndpoint AddServiceEndpoint(Type contractType, System.ServiceModel.Channels.Binding binding, string address, Uri listenUri);
member this.AddServiceEndpoint : Type * System.ServiceModel.Channels.Binding * string * Uri -> System.ServiceModel.Description.ServiceEndpoint
Public Function AddServiceEndpoint (contractType As Type, binding As Binding, address As String, listenUri As Uri) As ServiceEndpoint

Parameters

contractType
Type

Het type contract dat door het eindpunt is geïmplementeerd.

binding
Binding

De binding voor het eindpunt is toegevoegd.

address
String

Het adres voor het eindpunt is toegevoegd.

listenUri
Uri

De URI die het adres bevat waarnaar het eindpunt luistert naar binnenkomende berichten.

Retouren

Het service-eindpunt is toegevoegd aan de configuratieservice.

Van toepassing op

AddServiceEndpoint(Type, Binding, Uri, Uri)

Voegt een service-eindpunt toe aan de configuratieservice met het opgegeven contract, de binding en URI's die het eindpunt en de luisteradressen bevatten.

public:
 System::ServiceModel::Description::ServiceEndpoint ^ AddServiceEndpoint(Type ^ contractType, System::ServiceModel::Channels::Binding ^ binding, Uri ^ address, Uri ^ listenUri);
public System.ServiceModel.Description.ServiceEndpoint AddServiceEndpoint(Type contractType, System.ServiceModel.Channels.Binding binding, Uri address, Uri listenUri);
member this.AddServiceEndpoint : Type * System.ServiceModel.Channels.Binding * Uri * Uri -> System.ServiceModel.Description.ServiceEndpoint
Public Function AddServiceEndpoint (contractType As Type, binding As Binding, address As Uri, listenUri As Uri) As ServiceEndpoint

Parameters

contractType
Type

Het type contract dat door het eindpunt is geïmplementeerd.

binding
Binding

De binding voor het eindpunt is toegevoegd.

address
Uri

De URI die het adres voor het eindpunt bevat dat is toegevoegd.

listenUri
Uri

De URI die het adres bevat waarop het eindpunt luistert naar binnenkomende berichten.

Retouren

Het service-eindpunt is toegevoegd aan de configuratieservice.

Van toepassing op