WorkflowServiceHost::AddServiceEndpoint Method (XName^, Binding^, String^, Uri^, String^)
.NET Framework (current version)
Adds a service endpoint to the workflow service host using the specified contract, binding, endpoint address, listen URI, and behavior configuration name.
Assembly: System.ServiceModel.Activities (in System.ServiceModel.Activities.dll)
public:
ServiceEndpoint^ AddServiceEndpoint(
XName^ serviceContractName,
Binding^ binding,
String^ address,
Uri^ listenUri = null,
String^ behaviorConfigurationName = null
)
Parameters
- serviceContractName
-
Type:
System.Xml.Linq::XName^
The contract exposed by the endpoint
- binding
-
Type:
System.ServiceModel.Channels::Binding^
The binding for the endpoint.
- address
-
Type:
System::String^
The address of the endpoint.
- listenUri
-
Type:
System::Uri^
The address at which the service endpoint listens for incoming messages.
- behaviorConfigurationName
-
Type:
System::String^
The endpoint behavior configuration name.
The following example shows how to add a service endpoint using this method.
.NET Framework
Available since 4.0
Available since 4.0
Show: