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]; 20set => _contents[key] = value; 29public ICollection<string> Keys => _contents.Keys; 30public ICollection<string?> Values => _contents.Values; 32ICollection IDictionary.Keys => _contents.Keys; 33ICollection IDictionary.Values => _contents.Values; 35public int Count => _contents.Count; 37public bool IsReadOnly => ((IDictionary)_contents).IsReadOnly; 38public bool IsSynchronized => ((IDictionary)_contents).IsSynchronized; 39public bool IsFixedSize => ((IDictionary)_contents).IsFixedSize; 40public object SyncRoot => ((IDictionary)_contents).SyncRoot; 48public void Clear() => _contents.Clear(); 52return _contents.ContainsKey(item.Key) && _contents[item.Key] == item.Value; 56public bool ContainsKey(string key) => _contents.ContainsKey(key); 57public bool ContainsValue(string? value) => _contents.ContainsValue(value); 61((IDictionary<string, string?>)_contents).CopyTo(array, arrayIndex); 64public void CopyTo(Array array, int index) => ((IDictionary)_contents).CopyTo(array, index); 66public bool Remove(string key) => _contents.Remove(key); 79public bool TryGetValue(string key, out string? value) => _contents.TryGetValue(key, out value); 81public IEnumerator<KeyValuePair<string, string?>> GetEnumerator() => _contents.GetEnumerator(); 82IEnumerator IEnumerable.GetEnumerator() => _contents.GetEnumerator(); 83IDictionaryEnumerator IDictionary.GetEnumerator() => _contents.GetEnumerator();