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