Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

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

 

Adds a service endpoint to the hosted service with a specified contract, binding, endpoint address and URI that contains the address at which it listens.

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

public:
ServiceEndpoint^ AddServiceEndpoint(
	String^ implementedContract,
	Binding^ binding,
	String^ 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::String^

The address for the endpoint added. This address can be an absolute or relative URI. 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 which the endpoint listens to for incoming messages. This URI can be relative or absolute.

Return Value

Type: System.ServiceModel.Description::ServiceEndpoint^

The ServiceEndpoint added to the hosted service.

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.

If the address is a relative URI, one of the base addresses of the ServiceHost (depending on the binding protocol) is used as the endpoint's base address.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft