3 writes to Capacity
System.ServiceModel (3)
System\ServiceModel\Dispatcher\ServiceThrottle.cs (3)
134this.Calls.Capacity = value; 151this.Sessions.Capacity = value; 168this.InstanceContexts.Capacity = value;
12 references to Capacity
System.ServiceModel (12)
System\ServiceModel\Dispatcher\ServiceThrottle.cs (12)
130get { return this.Calls.Capacity; } 138this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.CallsPercentMaxCallsBase, this.Calls.Capacity); 147get { return this.Sessions.Capacity; } 155this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.SessionsPercentMaxSessionsBase, this.Sessions.Capacity); 164get { return this.InstanceContexts.Capacity; } 172this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.InstancesPercentMaxInstancesBase, this.InstanceContexts.Capacity); 236this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.InstancesPercentMaxInstancesBase, instanceContextsFt.Capacity); 246this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.CallsPercentMaxCallsBase, this.calls.Capacity); 256this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.SessionsPercentMaxSessionsBase, this.sessions.Capacity); 420((this.calls != null) && (this.calls.Capacity != Int32.MaxValue)) || 421((this.sessions != null) && (this.sessions.Capacity != Int32.MaxValue)) || 422((this.instanceContexts != null) && (this.instanceContexts.Capacity != Int32.MaxValue)));