3 writes to _dictionary
System.Text.Json (3)
System\Text\Json\Nodes\JsonObject.cs (2)
47
_dictionary
= dictionary;
96
_dictionary
= CreateDictionary(Options, Count)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (1)
242
_dictionary
= dictionary;
4 references to _dictionary
System.Text.Json (4)
System\Text\Json\Nodes\JsonObject.cs (2)
78
private OrderedDictionary<string, JsonNode?> Dictionary =>
_dictionary
?? InitializeDictionary();
279
Debug.Assert(
_dictionary
!= null, "Cannot have detachable nodes without a materialized dictionary.");
System\Text\Json\Nodes\JsonObject.IDictionary.cs (2)
56
OrderedDictionary<string, JsonNode?>? dictionary =
_dictionary
;
270
dictionary =
_dictionary
;