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
{
439
text
=
GetRootId
(
ParentId
);
440
}
441
if
(
text
!=
null
)
442
{
443
Interlocked
.
CompareExchange
(
ref
_rootId
,
text
,
null
);
444
}
445
}
446
return
_rootId
;
447
}
448
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Diagnostics.Activity.ParentId
string? ParentId
Definition
Activity.cs:405
System.Diagnostics.Activity.GetRootId
string GetRootId(string id)
Definition
Activity.cs:1085
System.Diagnostics.Activity._rootId
string _rootId
Definition
Activity.cs:325
System.Diagnostics.Activity.Id
string? Id
Definition
Activity.cs:390
System.Threading.Interlocked.CompareExchange
static int CompareExchange(ref int location1, int value, int comparand)
System.Threading.Interlocked
Definition
Interlocked.cs:9
System.ExceptionArgument.text
@ text
System
Diagnostics
Activity
Generated by
1.10.0