ChannelDispatcher.BindingName Property

Definition

Gets the name of the binding used to configure the service.

public:
 property System::String ^ BindingName { System::String ^ get(); };
public string BindingName { get; }
member this.BindingName : string
Public ReadOnly Property BindingName As String

Property Value

The binding name of the service.

Examples

Uri baseAddress = new Uri("http://localhost:8001/Simple");
ServiceHost serviceHost = new ServiceHost(typeof(CalculatorService), baseAddress);

serviceHost.AddServiceEndpoint(
    typeof(ICalculator),
    new WSHttpBinding(),
    "CalculatorServiceObject");

serviceHost.Open();

ChannelDispatcher dispatcher = (ChannelDispatcher) serviceHost.ChannelDispatchers[0];
string bindingName = dispatcher.BindingName;
Dim baseAddress As New Uri("http://localhost:8001/Simple")
Dim serviceHost As New ServiceHost(GetType(CalculatorService), baseAddress)

serviceHost.AddServiceEndpoint(GetType(ICalculator), New WSHttpBinding(), "CalculatorServiceObject")

serviceHost.Open()

Dim dispatcher As ChannelDispatcher = CType(serviceHost.ChannelDispatchers(0), ChannelDispatcher)
Dim bindingName As String = dispatcher.BindingName

Remarks

Used to obtain the binding name for the binding with which this channel dispatcher is associated.

Applies to