ServiceEndpoint::Name Property

 

Gets or sets the name of the service endpoint.

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

public:
property String^ Name {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name the service endpoint. The default value is the concatenation of the binding name and the contract description name. For example, Binding::Name +'_' + ContractDescription::Name.

Services may have multiple endpoints, so the endpoint Name is distinct from the name of the service. The service name is accessed using the Name property.

System_CAPS_noteNote

When accessed from the service, this property is populated by the <endpoint name="endpointName"> configuration element. When accessed on the client, this property is null. When the property getter is called (again on the client) it populates this property with a default value based on the contract and binding.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 3.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: