4 writes to Parent
System.Text.Json (4)
System\Text\Json\Nodes\JsonArray.IList.cs (1)
235item.Parent = null;
System\Text\Json\Nodes\JsonNode.cs (1)
364Parent = parent;
System\Text\Json\Nodes\JsonObject.cs (1)
274item.Parent = null;
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
222node.Parent = this;
12 references to Parent
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
748obj.Parent is JsonObject && obj.GetPropertyName() == "properties" ?
System.Text.Json (11)
System\Text\Json\Nodes\JsonArray.cs (1)
243Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonNode.cs (8)
37if (!_options.HasValue && Parent != null) 42_options = Parent.Options; 140if (Parent == null) 163JsonNode? parent = Parent; 169while (parent.Parent != null) 171parent = parent.Parent; 348if (Parent != null) 361p = p.Parent;
System\Text\Json\Nodes\JsonObject.cs (1)
217Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonValue.cs (1)
158Parent?.GetPath(ref path, this);