3 instantiations of ServiceThrottlingBehavior
System.ServiceModel (2)
System\ServiceModel\Channels\PeerService.cs (1)
85
ServiceThrottlingBehavior throttle = new
ServiceThrottlingBehavior
();
System\ServiceModel\Configuration\ServiceThrottlingElement.cs (1)
55
ServiceThrottlingBehavior behavior = new
ServiceThrottlingBehavior
();
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableInstanceContextProvider.cs (1)
33
serviceHostBase.ServiceThrottle.MaxConcurrentInstances = (new
ServiceThrottlingBehavior
()).MaxConcurrentInstances;
10 references to ServiceThrottlingBehavior
System.ServiceModel (6)
System\ServiceModel\Administration\ServiceInstanceProvider.cs (3)
315
else if (behavior is
ServiceThrottlingBehavior
)
318
ServiceThrottlingBehavior
throttlingBehavior = (
ServiceThrottlingBehavior
)behavior;
System\ServiceModel\Channels\PeerService.cs (1)
85
ServiceThrottlingBehavior
throttle = new ServiceThrottlingBehavior();
System\ServiceModel\Configuration\ServiceThrottlingElement.cs (2)
55
ServiceThrottlingBehavior
behavior = new ServiceThrottlingBehavior();
78
get { return typeof(
ServiceThrottlingBehavior
); }
System.ServiceModel.Activities (3)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (3)
149
int maxInstances =
ServiceThrottlingBehavior
.DefaultMaxConcurrentInstances;
150
ServiceThrottlingBehavior
serviceThrottlingBehavior = Host.Description.Behaviors.Find<
ServiceThrottlingBehavior
>();
System.WorkflowServices (1)
System\ServiceModel\Dispatcher\DurableInstanceContextProvider.cs (1)
31
if (serviceHostBase.Description.Behaviors.Find<
ServiceThrottlingBehavior
>() == null)