4 instantiations of ServiceThrottle
System.ServiceModel (4)
System\ServiceModel\Description\ServiceThrottlingBehavior.cs (1)
107ServiceThrottle throttle = new ServiceThrottle(serviceHostBase);
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
994channelDispatcher.ServiceThrottle = new ServiceThrottle(this);
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1183channelDispatcher.ServiceThrottle = new ServiceThrottle(this);
System\ServiceModel\ServiceHost.cs (1)
65this.serviceThrottle = new ServiceThrottle(this);
55 references to ServiceThrottle
System.ServiceModel (55)
System\ServiceModel\Channels\DatagramAdapter.cs (6)
32ServiceThrottle throttle, 39ServiceThrottle throttle, 58ServiceThrottle throttle; 63protected DatagramAdapterListenerBase(IChannelListener<TSessionChannel> listener, ServiceThrottle throttle, IDefaultCommunicationTimeouts timeouts) 759ServiceThrottle throttle, 848ServiceThrottle throttle,
System\ServiceModel\Channels\ServiceChannel.cs (7)
45ServiceThrottle instanceContextServiceThrottle; 53ServiceThrottle serviceThrottle; 410internal ServiceThrottle InstanceContextServiceThrottle 416internal ServiceThrottle ServiceThrottle 1347ServiceThrottle serviceThrottle = this.serviceThrottle; 1456ServiceThrottle serviceThrottle = this.serviceThrottle; 1484ServiceThrottle serviceThrottle = this.serviceThrottle;
System\ServiceModel\Channels\TransportDefaults.cs (1)
507internal static readonly int MaxPendingConnectionsCpuCount = ServiceThrottle.DefaultMaxConcurrentSessionsCpuCount;
System\ServiceModel\Configuration\ServiceThrottlingElement.cs (4)
18[ConfigurationProperty(ConfigurationStrings.MaxConcurrentCalls, DefaultValue = ServiceThrottle.DefaultMaxConcurrentCalls)] 26[ConfigurationProperty(ConfigurationStrings.MaxConcurrentSessions, DefaultValue = ServiceThrottle.DefaultMaxConcurrentSessions)] 34[ConfigurationProperty(ConfigurationStrings.MaxConcurrentInstances, DefaultValue = ServiceThrottle.DefaultMaxConcurrentCalls + ServiceThrottle.DefaultMaxConcurrentSessions)]
System\ServiceModel\Description\DispatcherBuilder.cs (2)
380ListenUriMode listenUriMode, ServiceThrottle throttle, 390ListenUriMode listenUriMode, ServiceThrottle throttle,
System\ServiceModel\Description\ServiceThrottlingBehavior.cs (6)
19internal static int DefaultMaxConcurrentInstances = ServiceThrottle.DefaultMaxConcurrentCallsCpuCount + ServiceThrottle.DefaultMaxConcurrentSessionsCpuCount; 21int calls = ServiceThrottle.DefaultMaxConcurrentCallsCpuCount; 22int sessions = ServiceThrottle.DefaultMaxConcurrentSessionsCpuCount; 95ServiceThrottle serviceThrottle = serviceHostBase.ServiceThrottle; 107ServiceThrottle throttle = new ServiceThrottle(serviceHostBase);
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (3)
42ServiceThrottle serviceThrottle; 277public ServiceThrottle ServiceThrottle 842ServiceThrottle throttle = this.serviceThrottle;
System\ServiceModel\Dispatcher\ChannelHandler.cs (7)
35readonly ServiceThrottle throttle; 64ServiceThrottle instanceContextThrottle; 100internal ChannelHandler(MessageVersion messageVersion, IChannelBinder binder, ServiceThrottle throttle, 231internal ServiceThrottle InstanceContextServiceThrottle 922ServiceThrottle throttle = this.throttle; 1952ServiceThrottle throttle = this.throttle; 1980ServiceThrottle throttle = this.throttle;
System\ServiceModel\Dispatcher\ListenerHandler.cs (4)
32readonly ServiceThrottle throttle; 36internal ListenerHandler(IListenerBinder listenerBinder, ChannelDispatcher channelDispatcher, ServiceHostBase host, ServiceThrottle throttle, IDefaultCommunicationTimeouts timeouts) 725ServiceThrottle throttle; 737public ServiceThrottle Throttle
System\ServiceModel\Dispatcher\ServiceThrottle.cs (10)
43this.MaxConcurrentCalls = ServiceThrottle.DefaultMaxConcurrentCallsCpuCount; 44this.MaxConcurrentSessions = ServiceThrottle.DefaultMaxConcurrentSessionsCpuCount; 59FlowThrottle callsFt = new FlowThrottle(this.GotCall, ServiceThrottle.DefaultMaxConcurrentCallsCpuCount, 60ServiceThrottle.MaxConcurrentCallsPropertyName, ServiceThrottle.MaxConcurrentCallsConfigName); 83FlowThrottle sessionsFt = new FlowThrottle(this.GotSession, ServiceThrottle.DefaultMaxConcurrentSessionsCpuCount, 84ServiceThrottle.MaxConcurrentSessionsPropertyName, ServiceThrottle.MaxConcurrentSessionsConfigName); 188ServiceThrottle.MaxConcurrentInstancesPropertyName, ServiceThrottle.MaxConcurrentInstancesConfigName);
System\ServiceModel\InstanceContext.cs (3)
29ServiceThrottle serviceThrottle; 242internal ServiceThrottle ServiceThrottle 566ServiceThrottle throttle = this.serviceThrottle;
System\ServiceModel\ServiceHost.cs (2)
46ServiceThrottle serviceThrottle; 262internal ServiceThrottle ServiceThrottle