1 write to _properties
Microsoft.Analyzers.Local (1)
ApiLifecycle\Json\JsonObject.cs (1)
26_properties = new Dictionary<string, JsonValue>();
11 references to _properties
Microsoft.Analyzers.Local (11)
ApiLifecycle\Json\JsonObject.cs (11)
33public int Count => _properties.Count; 44get => _properties.TryGetValue(key, out var value) 47set => _properties[key] = value; 66_properties.Add(key, value); 77public bool Remove(string key) => _properties.Remove(key); 85_properties.Clear(); 106if (_properties.TryGetValue(oldKey, out var value)) 120public bool ContainsKey(string key) => _properties.ContainsKey(key); 127public bool Contains(JsonValue value) => _properties.Values.Contains(value); 133public IEnumerator<KeyValuePair<string, JsonValue>> GetEnumerator() => _properties.GetEnumerator(); 139IEnumerator<JsonValue> IEnumerable<JsonValue>.GetEnumerator() => _properties.Values.GetEnumerator();