3 writes to Capacity
System.ServiceModel (3)
System\ServiceModel\Dispatcher\ServiceThrottle.cs (3)
134
this.Calls.
Capacity
= value;
151
this.Sessions.
Capacity
= value;
168
this.InstanceContexts.
Capacity
= value;
12 references to Capacity
System.ServiceModel (12)
System\ServiceModel\Dispatcher\ServiceThrottle.cs (12)
130
get { return this.Calls.
Capacity
; }
138
this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.CallsPercentMaxCallsBase, this.Calls.
Capacity
);
147
get { return this.Sessions.
Capacity
; }
155
this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.SessionsPercentMaxSessionsBase, this.Sessions.
Capacity
);
164
get { return this.InstanceContexts.
Capacity
; }
172
this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.InstancesPercentMaxInstancesBase, this.InstanceContexts.
Capacity
);
236
this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.InstancesPercentMaxInstancesBase, instanceContextsFt.
Capacity
);
246
this.servicePerformanceCounters.SetThrottleBase((int)ServicePerformanceCounters.PerfCounters.CallsPercentMaxCallsBase, this.calls.
Capacity
);
256
this.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)));