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

◆ RootId

string? System.Diagnostics.Activity.RootId
get

Definition at line 426 of file Activity.cs.

427 {
428 get
429 {
430 if (_rootId == null)
431 {
432 string text = null;
433 if (Id != null)
434 {
435 text = GetRootId(Id);
436 }
437 else if (ParentId != null)
438 {
440 }
441 if (text != null)
442 {
444 }
445 }
446 return _rootId;
447 }
448 }
string GetRootId(string id)
Definition Activity.cs:1085
static int CompareExchange(ref int location1, int value, int comparand)