33 references to ChannelDispatcher
System.ServiceModel (13)
System\ServiceModel\Description\DispatcherBuilder.cs (6)
880if (endpointInfos[i].EndpointDispatcher.ChannelDispatcher == 881endpointInfos[j].EndpointDispatcher.ChannelDispatcher) 1223endpointDispatcher.ChannelDispatcher.ReceiveSynchronously = runtimePreferences.ReceiveSynchronously; 1226endpointDispatcher.ChannelDispatcher.ManualAddressing = this.IsManualAddressing(serviceEndpoint.Binding); 1227endpointDispatcher.ChannelDispatcher.EnableFaults = !this.IsMulticast(serviceEndpoint.Binding); 1228endpointDispatcher.ChannelDispatcher.MessageVersion = serviceEndpoint.Binding.MessageVersion;
System\ServiceModel\Description\DispatcherSynchronizationBehavior.cs (2)
51endpointDispatcher.ChannelDispatcher.SendAsynchronously = this.AsynchronousSendEnabled; 52endpointDispatcher.ChannelDispatcher.MaxPendingReceives = this.MaxPendingReceives;
System\ServiceModel\Description\SynchronousReceiveBehavior.cs (1)
29endpointDispatcher.ChannelDispatcher.ReceiveSynchronously = true;
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
332get { return this.channelDispatcher ?? this.endpointDispatcher.ChannelDispatcher; }
System\ServiceModel\Dispatcher\EndpointDispatcher.cs (1)
255baseEndpoint.ChannelDispatcher.Endpoints.Add(endpoint);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (2)
836ILogonTokenCacheManager logonManager = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<ILogonTokenCacheManager>(); 837Collection<ISecurityContextSecurityTokenCache> sctCaches = OperationContext.Current.EndpointDispatcher.ChannelDispatcher.Listener.GetProperty<Collection<ISecurityContextSecurityTokenCache>>();
System.ServiceModel.Activities (4)
System\ServiceModel\Activities\Description\CorrelationQueryBehavior.cs (3)
120ServiceDescription description = endpointDispatcher.ChannelDispatcher.Host.Description; 121WorkflowServiceHost host = endpointDispatcher.ChannelDispatcher.Host as WorkflowServiceHost; 134endpointDispatcher.ChannelDispatcher.ChannelInitializers.Add(this);
System\ServiceModel\Activities\Description\WorkflowServiceBehavior.cs (1)
98ServiceHostBase serviceHost = endpointDispatcher.ChannelDispatcher.Host;
System.ServiceModel.Discovery (8)
System\ServiceModel\Discovery\DiscoveryEndpointValidator.cs (1)
33endpointDispatcher.ChannelDispatcher.Host.Description.Behaviors.Find<ServiceDiscoveryBehavior>() == null)
System\ServiceModel\Discovery\EndpointDiscoveryMetadata.cs (7)
185if ((endpointDispatcher.ChannelDispatcher != null) && 186(endpointDispatcher.ChannelDispatcher.Listener != null)) 188endpointDiscoveryMetadata = GetEndpointDiscoveryMetadata(endpoint, endpointDispatcher.ChannelDispatcher.Listener.Uri); 199AddContractTypeScopes(endpointDiscoveryMetadata, endpointDispatcher.ChannelDispatcher.Host.Description); 279if ((endpointDispatcher.ChannelDispatcher == null) || (endpointDispatcher.ChannelDispatcher.Host == null)) 284ServiceDescription description = endpointDispatcher.ChannelDispatcher.Host.Description;
System.ServiceModel.Routing (3)
System\ServiceModel\Routing\RoutingBehavior.cs (2)
175this.ChannelDispatcher = endpointDispatcher.ChannelDispatcher; 216endpointDispatcher.ChannelDispatcher.IsTransactedReceive = false;
System\ServiceModel\Routing\RoutingService.cs (1)
132ChannelDispatcher channelDispatcher = this.operationContext.EndpointDispatcher.ChannelDispatcher;
System.ServiceModel.Web (4)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (4)
230if (endpointDispatcher.ChannelDispatcher == null) 236endpointDispatcher.ChannelDispatcher.ErrorHandlers.Add(new JsonErrorHandler(endpoint, endpointDispatcher.ChannelDispatcher.IncludeExceptionDetailInFaults)); 253ServiceHostBase host = endpointDispatcher.ChannelDispatcher.Host;
System.WorkflowServices (1)
System\ServiceModel\Activities\Description\WorkflowRuntimeServicesBehavior.cs (1)
72WorkflowServiceHost serviceHost = endpointDispatcher.ChannelDispatcher.Host as WorkflowServiceHost;