Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Root
JsonNode
System.Text.Json.Nodes.JsonNode.Root
get
inherited
Definition at line
37
of file
JsonNode.cs
.
38
{
39
get
40
{
41
JsonNode
parent =
Parent
;
42
if
(parent ==
null
)
43
{
44
return
this
;
45
}
46
while
(parent.Parent !=
null
)
47
{
48
parent = parent.
Parent
;
49
}
50
return
parent;
51
}
52
}
System.Text.Json.Nodes.JsonNode.JsonNode
JsonNode(JsonNodeOptions? options=null)
Definition
JsonNode.cs:78
System.Text.Json.Nodes.JsonNode.Parent
JsonNode? Parent
Definition
JsonNode.cs:26
System
Text
Json
Nodes
JsonValueTrimmable
Generated by
1.10.0