15 references to HashSet
System.ComponentModel.DataAnnotations (1)
DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (1)
121HashSet<string> buddyTypeMembers = new HashSet<string>(buddyFields.Concat(buddyProperties), StringComparer.Ordinal);
System.Core (2)
System\Collections\Generic\HashSet.cs (1)
120: this(collection, EqualityComparer<T>.Default) { }
System\Linq\Enumerable.cs (1)
995return new HashSet<TSource>(source, comparer);
System.Data.Entity (1)
System\Data\Common\Utils\Set.cs (1)
77_values = new HashSet<TElement>(
System.Data.Services (5)
System\Data\Services\Providers\ReflectionServiceProvider.cs (2)
611HashSet<string> propertiesToBeIgnored = new HashSet<string>(IgnorePropertiesAttribute.GetProperties(parentResourceType.InstanceType, false /*inherit*/, bindingFlags), StringComparer.Ordinal); 614HashSet<string> etagPropertyNames = new HashSet<string>(LoadETagProperties(parentResourceType), StringComparer.Ordinal);
System\Data\Services\Serializers\MetadataSerializer.cs (3)
253WriteAssociationTypes(this.Writer, new HashSet<ResourceAssociationType>(associationsInThisNamespace.Values, EqualityComparer<ResourceAssociationType>.Default)); 266WriteAssociationTypes(this.Writer, new HashSet<ResourceAssociationType>(associationsInThisNamespace.Values, EqualityComparer<ResourceAssociationType>.Default)); 824get { return new HashSet<ResourceAssociationSet>(this.associationSets.Values, EqualityComparer<ResourceAssociationSet>.Default); }
System.Data.Services.Client (1)
System\Data\Services\Client\ALinq\ResourceBinder.cs (1)
330HashSet<T> leftElements = new HashSet<T>(left, comparer);
System.Web (5)
Compilation\BuildManager.cs (2)
815return new HashSet<string>(methods.Select(m => m.DeclaringType.Assembly.FullName), StringComparer.OrdinalIgnoreCase); 822return new HashSet<string>(File.ReadAllLines(path), StringComparer.OrdinalIgnoreCase);
HttpCookieCollection.cs (1)
124_keysAwaitingValidation = new HashSet<string>(Keys.Cast<string>(), StringComparer.OrdinalIgnoreCase);
HttpValueCollection.cs (1)
76_keysAwaitingValidation = new HashSet<string>(Keys.Cast<string>().Where(KeyIsCandidateForValidation), StringComparer.OrdinalIgnoreCase);
Routing\ParsedRoute.cs (1)
37HashSet<string> unusedNewValues = new HashSet<string>(values.Keys, StringComparer.OrdinalIgnoreCase);