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