Implemented interface member:
method
Remove
System.Collections.Generic.ICollection<T>.Remove(T)
13 references to Remove
Microsoft.AspNetCore.HttpLogging (4)
W3CLoggerOptions.cs (4)
132clonedSet.Remove(HeaderNames.Host); 136clonedSet.Remove(HeaderNames.Referer); 140clonedSet.Remove(HeaderNames.UserAgent); 144clonedSet.Remove(HeaderNames.Cookie);
System.Collections (9)
System\Collections\Generic\SortedDictionary.cs (2)
92_set.Remove(keyValuePair); 260return _set.Remove(new KeyValuePair<TKey, TValue>(key, default(TValue)!));
System\Collections\Generic\SortedSet.cs (5)
156Remove(item); 1096Remove(item); 1144bool result = Contains(item) ? Remove(item) : Add(item); 1167bool result = Contains(current) ? Remove(current) : Add(current); 1447if (Remove(matches[i]))
System\Collections\Generic\SortedSet.TreeSubSet.cs (2)
84bool ret = _underlying.Remove(item); 103_underlying.Remove(toRemove[^1]);