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