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)
242internal override void GetPath(ref ValueStringBuilder path, JsonNode? child)
System\Text\Json\Nodes\JsonValue.cs (1)
154internal 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)
147GetPath(ref path, null);
System\Text\Json\Nodes\JsonObject.cs (1)
244Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonValue.cs (1)
158Parent?.GetPath(ref path, this);