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