6 references to _backingDictionary
System.Private.Xml (6)
System\Xml\Xsl\Xslt\Scripts.cs (6)
59
get =>
_backingDictionary
[key];
61
set =>
_backingDictionary
[key] = value;
64
public ICollection<string> Keys =>
_backingDictionary
.Keys;
66
public int Count =>
_backingDictionary
.Count;
68
public bool ContainsKey(string key) =>
_backingDictionary
.ContainsKey(key);
70
public bool TryGetValue(string key, [MaybeNullWhen(false)] out Type value) =>
_backingDictionary
.TryGetValue(key, out value);