3 overrides of GetPath
System.Text.Json (3)
System\Text\Json\Nodes\JsonArray.cs (1)
241internal override void GetPath(ref ValueStringBuilder path, JsonNode? child)
System\Text\Json\Nodes\JsonObject.cs (1)
221internal override void GetPath(ref ValueStringBuilder path, JsonNode? child)
System\Text\Json\Nodes\JsonValue.cs (1)
157internal sealed override void GetPath(ref ValueStringBuilder path, JsonNode? child)
4 references to GetPath
System.Text.Json (4)
System\Text\Json\Nodes\JsonArray.cs (1)
243Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonNode.cs (1)
145GetPath(ref path, null);
System\Text\Json\Nodes\JsonObject.cs (1)
223Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonValue.cs (1)
161Parent?.GetPath(ref path, this);