4 writes to Parent
System.Text.Json (4)
System\Text\Json\Nodes\JsonArray.IList.cs (1)
238item.Parent = null;
System\Text\Json\Nodes\JsonNode.cs (1)
362Parent = parent;
System\Text\Json\Nodes\JsonObject.cs (1)
283item.Parent = null;
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
234node.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)
35if (!_options.HasValue && Parent != null) 40_options = Parent.Options; 138if (Parent == null) 161JsonNode? parent = Parent; 167while (parent.Parent != null) 169parent = parent.Parent; 346if (Parent != null) 359p = p.Parent;
System\Text\Json\Nodes\JsonObject.cs (1)
223Parent?.GetPath(ref path, this);
System\Text\Json\Nodes\JsonValue.cs (1)
161Parent?.GetPath(ref path, this);