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

◆ Id

string? System.Diagnostics.Activity.Id
get

Definition at line 389 of file Activity.cs.

390 {
391 get
392 {
393 if (_id == null && _spanId != null)
394 {
395 Span<char> buffer = stackalloc char[2];
397 string value = "00-" + _traceId + "-" + _spanId + "-" + buffer;
399 }
400 return _id;
401 }
402 }
static void ToCharsBuffer(byte value, Span< char > buffer, int startingIndex=0, Casing casing=Casing.Upper)
static int CompareExchange(ref int location1, int value, int comparand)

Referenced by System.Diagnostics.Activity.GenerateHierarchicalId().