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

◆ RecordMeasurement() [5/6]

void System.Diagnostics.Metrics.Instrument< T >.RecordMeasurement ( T measurement,
KeyValuePair< string, object?> tag1,
KeyValuePair< string, object?> tag2,
KeyValuePair< string, object?> tag3 )
inlineprotectedinherited

Definition at line 151 of file Instrument.cs.

152 {
153 ThreeTagsBag threeTagsBag = new ThreeTagsBag(tag1, tag2, tag3);
154 RecordMeasurement(measurement, MemoryMarshal.CreateReadOnlySpan(ref threeTagsBag.Tag1, 3));
155 }
void RecordMeasurement(T measurement)

References System.Diagnostics.Metrics.Instrument< T >.RecordMeasurement().