ServiceHostBase::AddServiceEndpoint Method (String^, Binding^, Uri^, Uri^)

 

Adds a service endpoint to the hosted service with the specified contract, binding, and URIs that contain the endpoint and listening addresses.

Namespace:   System.ServiceModel
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
ServiceEndpoint^ AddServiceEndpoint(
	String^ implementedContract,
	Binding^ binding,
	Uri^ address,
	Uri^ listenUri
)

Parameters

implementedContract
Type: System::String^

The contract implemented by the endpoint.

binding
Type: System.ServiceModel.Channels::Binding^

The Binding for the endpoint added.

address
Type: System::Uri^

The Uri that contains the address for the endpoint added. If it is a relative URI, one of the base address of the ServiceHost (depending on the binding protocol) is used as the endpoint's base address.

listenUri
Type: System::Uri^

The Uri that contains the address at which the endpoint listens for incoming messages.

Return Value

Type: System.ServiceModel.Description::ServiceEndpoint^

The ServiceEndpoint added to the hosted service. This URI can be absolute or relative.

Exception Condition
ArgumentNullException

implementedContract or binding or address or is null.

InvalidOperationException

The host is not in a Created or an Opening state or there is no ServiceDescription for the hosted service and so an endpoint cannot be added.

.NET Framework
Available since 3.0
Return to top
Show: