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.
<ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")> _ Public Sub New ( _ capacity As Integer, _ hashProvider As IHashCodeProvider, _ comparer As IComparer _ )
[ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")] public NameValueCollection( int capacity, IHashCodeProvider hashProvider, IComparer comparer )
[ObsoleteAttribute(L"Please use NameValueCollection(Int32, IEqualityComparer) instead.")] public: NameValueCollection( int capacity, IHashCodeProvider^ hashProvider, IComparer^ comparer )
[<ObsoleteAttribute("Please use NameValueCollection(Int32, IEqualityComparer) instead.")>] new : capacity:int * hashProvider:IHashCodeProvider * comparer:IComparer -> NameValueCollection
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.
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