Base:
property
Host
System.ServiceModel.Dispatcher.ChannelDispatcherBase.Host
22 references to Host
System.ServiceModel (2)
System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
35
this.host = (dispatch.ChannelDispatcher == null) ? null : dispatch.ChannelDispatcher.
Host
;
System\ServiceModel\Dispatcher\SingletonInstanceContextProvider.cs (1)
36
instanceContext = new InstanceContext(this.DispatchRuntime.ChannelDispatcher.
Host
, false);
System.ServiceModel.Activities (9)
System\ServiceModel\Activities\Description\ControlOperationBehavior.cs (1)
36
ServiceHostBase serviceHost = dispatchOperation.Parent.ChannelDispatcher.
Host
;
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (2)
120
ServiceDescription description = endpointDispatcher.ChannelDispatcher.
Host
.Description;
121
WorkflowServiceHost host = endpointDispatcher.ChannelDispatcher.
Host
as WorkflowServiceHost;
System\ServiceModel\Activities\Description\WorkflowContractBehaviorAttribute.cs (1)
30
if (dispatchRuntime.ChannelDispatcher.
Host
.Description.Behaviors.Contains(typeof(WorkflowServiceBehavior)))
System\ServiceModel\Activities\Description\WorkflowOperationBehavior.cs (4)
63
|| dispatchOperation.Parent.ChannelDispatcher.
Host
== null
64
|| dispatchOperation.Parent.ChannelDispatcher.
Host
.Description == null
65
|| dispatchOperation.Parent.ChannelDispatcher.
Host
.Description.Behaviors == null)
70
ServiceHostBase serviceHost = dispatchOperation.Parent.ChannelDispatcher.
Host
;
System\ServiceModel\Activities\Description\WorkflowServiceBehavior.cs (1)
98
ServiceHostBase serviceHost = endpointDispatcher.ChannelDispatcher.
Host
;
System.ServiceModel.Discovery (4)
System\ServiceModel\Discovery\DiscoveryEndpointValidator.cs (1)
33
endpointDispatcher.ChannelDispatcher.
Host
.Description.Behaviors.Find<ServiceDiscoveryBehavior>() == null)
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (3)
199
AddContractTypeScopes(endpointDiscoveryMetadata, endpointDispatcher.ChannelDispatcher.
Host
.Description);
279
if ((endpointDispatcher.ChannelDispatcher == null) || (endpointDispatcher.ChannelDispatcher.
Host
== null))
284
ServiceDescription description = endpointDispatcher.ChannelDispatcher.
Host
.Description;
System.ServiceModel.Web (1)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
253
ServiceHostBase host = endpointDispatcher.ChannelDispatcher.
Host
;
System.WorkflowServices (6)
System\ServiceModel\Activities\Description\WorkflowRuntimeServicesBehavior.cs (1)
72
WorkflowServiceHost serviceHost = endpointDispatcher.ChannelDispatcher.
Host
as WorkflowServiceHost;
System\ServiceModel\Description\WorkflowOperationBehavior.cs (4)
61
|| dispatch.Parent.ChannelDispatcher.
Host
== null
62
|| dispatch.Parent.ChannelDispatcher.
Host
.Description == null
63
|| dispatch.Parent.ChannelDispatcher.
Host
.Description.Behaviors == null)
68
WorkflowRuntimeBehavior workflowRuntimeBehavior = dispatch.Parent.ChannelDispatcher.
Host
.Description.Behaviors.Find<WorkflowRuntimeBehavior>();
System\ServiceModel\Dispatcher\WorkflowOperationInvoker.cs (1)
84
this.workflowInstanceLifeTimeManager = this.dispatchRuntime.ChannelDispatcher.
Host
.Extensions.Find<WorkflowInstanceLifetimeManagerExtension>();