Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ForEnumeration

IEnumerable<KeyValuePair<string, object> > System.Diagnostics.Tracing.CounterPayload.ForEnumeration
getprivate

Definition at line 33 of file CounterPayload.cs.

34 {
35 get
36 {
37 yield return new KeyValuePair<string, object>("Name", Name);
38 yield return new KeyValuePair<string, object>("DisplayName", DisplayName);
39 yield return new KeyValuePair<string, object>("DisplayUnits", DisplayUnits);
40 yield return new KeyValuePair<string, object>("Mean", Mean);
41 yield return new KeyValuePair<string, object>("StandardDeviation", StandardDeviation);
42 yield return new KeyValuePair<string, object>("Count", Count);
43 yield return new KeyValuePair<string, object>("Min", Min);
44 yield return new KeyValuePair<string, object>("Max", Max);
45 yield return new KeyValuePair<string, object>("IntervalSec", IntervalSec);
46 yield return new KeyValuePair<string, object>("Series", $"Interval={IntervalSec}");
47 yield return new KeyValuePair<string, object>("CounterType", "Mean");
48 yield return new KeyValuePair<string, object>("Metadata", Metadata);
49 }
50 }

Referenced by System.Diagnostics.Tracing.CounterPayload.GetEnumerator().