1 write to _contents
System.Diagnostics.Process (1)
System\Collections\Specialized\DictionaryWrapper.cs (1)
14_contents = contents;
23 references to _contents
System.Diagnostics.Process (23)
System\Collections\Specialized\DictionaryWrapper.cs (23)
19get => _contents[key]; 25_contents[key] = value; 35public ICollection<string> Keys => _contents.Keys; 36public ICollection<string?> Values => _contents.Values; 38ICollection IDictionary.Keys => _contents.Keys; 39ICollection IDictionary.Values => _contents.Values; 41public int Count => _contents.Count; 43public bool IsReadOnly => ((IDictionary)_contents).IsReadOnly; 44public bool IsSynchronized => ((IDictionary)_contents).IsSynchronized; 45public bool IsFixedSize => ((IDictionary)_contents).IsFixedSize; 46public object SyncRoot => ((IDictionary)_contents).SyncRoot; 54public void Clear() => _contents.Clear(); 58return _contents.ContainsKey(item.Key) && _contents[item.Key] == item.Value; 62public bool ContainsKey(string key) => _contents.ContainsKey(key); 63public bool ContainsValue(string? value) => _contents.ContainsValue(value); 67((IDictionary<string, string?>)_contents).CopyTo(array, arrayIndex); 70public void CopyTo(Array array, int index) => ((IDictionary)_contents).CopyTo(array, index); 72public bool Remove(string key) => _contents.Remove(key); 85public bool TryGetValue(string key, out string? value) => _contents.TryGetValue(key, out value); 87public IEnumerator<KeyValuePair<string, string?>> GetEnumerator() => _contents.GetEnumerator(); 88IEnumerator IEnumerable.GetEnumerator() => _contents.GetEnumerator(); 89IDictionaryEnumerator IDictionary.GetEnumerator() => _contents.GetEnumerator();