NameValueCollection Constructor (Int32, IHashCodeProvider, IComparer)
Note: This API is now obsolete.
Initializes a new instance of the NameValueCollection class that is empty, has the specified initial capacity and uses the specified hash code provider and the specified comparer.
Assembly: System (in System.dll)
[ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")] public NameValueCollection( int capacity, IHashCodeProvider hashProvider, IComparer comparer )
Parameters
- capacity
- Type: System.Int32
The initial number of entries that the NameValueCollection can contain.
- hashProvider
- Type: System.Collections.IHashCodeProvider
The IHashCodeProvider that will supply the hash codes for all keys in the NameValueCollection.
- comparer
- Type: System.Collections.IComparer
The IComparer to use to determine whether two keys are equal.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | capacity is less than zero. |
The capacity of a NameValueCollection is the number of elements that the NameValueCollection can hold. As elements are added to a NameValueCollection, the capacity is automatically increased as required by reallocating the internal array.
If the size of the collection can be estimated, specifying the initial capacity eliminates the need to perform a number of resizing operations while adding elements to the NameValueCollection.
The hash code provider dispenses hash codes for keys in the NameValueCollection. The default hash code provider is the CaseInsensitiveHashCodeProvider.
The comparer determines whether two keys are equal. The default comparer is the CaseInsensitiveComparer.
This constructor is an O(n) operation, where n is capacity.
.NET Framework
Supported in: 1.1, 1.0Obsolete (compiler warning) in 4
Obsolete (compiler warning) in 3.5
Obsolete (compiler warning) in 3.5 SP1
Obsolete (compiler warning) in 3.0
Obsolete (compiler warning) in 3.0 SP1
Obsolete (compiler warning) in 3.0 SP2
Obsolete (compiler warning) in 2.0
Obsolete (compiler warning) in 2.0 SP1
Obsolete (compiler warning) in 2.0 SP2
.NET Framework Client Profile
Obsolete (compiler warning) in 4Obsolete (compiler warning) in 3.5 SP1
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.