ChannelDispatcher.Host Property

Definition

Gets the host for the service associated with the dispatcher.

C#
public override System.ServiceModel.ServiceHostBase Host { get; }

Property Value

The ServiceHostBase for the service associated with the dispatcher.

Examples

C#
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];
ServiceHostBase hostBase = dispatcher.Host;

Remarks

Each ServiceHost object can have many ChannelDispatcher objects, each associated with a different IChannelListener for that service.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1