1 write to counters
System.ServiceModel (1)
System\ServiceModel\Diagnostics\EndpointPerformanceCountersV2.cs (1)
33this.counters = new CounterData[(int)PerfCounters.TotalCounters]; // Cache to dodge dictionary lookups in ServiceModelInstance
24 references to counters
System.ServiceModel (24)
System\ServiceModel\Diagnostics\EndpointPerformanceCountersV2.cs (24)
36this.counters[i] = this.endpointCounterSetInstance.Counters[i]; 37this.counters[i].Value = 0; 92this.counters[(int)PerfCounters.Calls].Increment(); 93this.counters[(int)PerfCounters.CallsPerSecond].Increment(); 94this.counters[(int)PerfCounters.CallsOutstanding].Increment(); 99this.counters[(int)PerfCounters.CallsOutstanding].Decrement(); 104this.counters[(int)PerfCounters.CallsFailed].Increment(); 105this.counters[(int)PerfCounters.CallsFailedPerSecond].Increment(); 106this.counters[(int)PerfCounters.CallsOutstanding].Decrement(); 111this.counters[(int)PerfCounters.CallsFaulted].Increment(); 112this.counters[(int)PerfCounters.CallsFaultedPerSecond].Increment(); 113this.counters[(int)PerfCounters.CallsOutstanding].Decrement(); 118this.counters[(int)PerfCounters.CallDuration].IncrementBy(time); 119this.counters[(int)PerfCounters.CallDurationBase].Increment(); 124this.counters[(int)PerfCounters.SecurityValidationAuthenticationFailures].Increment(); 125this.counters[(int)PerfCounters.SecurityValidationAuthenticationFailuresPerSecond].Increment(); 130this.counters[(int)PerfCounters.CallsNotAuthorized].Increment(); 131this.counters[(int)PerfCounters.CallsNotAuthorizedPerSecond].Increment(); 136this.counters[(int)PerfCounters.RMSessionsFaulted].Increment(); 137this.counters[(int)PerfCounters.RMSessionsFaultedPerSecond].Increment(); 142this.counters[(int)PerfCounters.RMMessagesDropped].Increment(); 143this.counters[(int)PerfCounters.RMMessagesDroppedPerSecond].Increment(); 148this.counters[(int)PerfCounters.TxFlowed].Increment(); 149this.counters[(int)PerfCounters.TxFlowedPerSecond].Increment();