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