14 references to contents
System.Collections.Specialized (14)
System\Collections\Specialized\StringDictionary.cs (14)
45return contents.Count; 58return contents.IsSynchronized; 71return (string?)contents[key.ToLowerInvariant()]; 77contents[key.ToLowerInvariant()] = value; 88return contents.Keys; 100return contents.SyncRoot; 111return contents.Values; 122contents.Add(key.ToLowerInvariant(), value); 130contents.Clear(); 140return contents.ContainsKey(key.ToLowerInvariant()); 148return contents.ContainsValue(value); 157contents.CopyTo(array, index); 165return contents.GetEnumerator(); 175contents.Remove(key.ToLowerInvariant());