NameValueCollectionExtensions.CopyTo Method (NameValueCollection, IDictionary(Of String, Object), Boolean)
Visual Studio 2010
Copies the specified collection to the specified destination, and optionally replaces previous entries.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration <ExtensionAttribute> _ Public Shared Sub CopyTo ( _ collection As NameValueCollection, _ destination As IDictionary(Of String, Object), _ replaceEntries As Boolean _ )
Parameters
- collection
- Type: System.Collections.Specialized.NameValueCollection
The collection.
- destination
- Type: System.Collections.Generic.IDictionary(Of String, Object)
The destination.
- replaceEntries
- Type: System.Boolean
true to replace previous entries; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type NameValueCollection. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Community Additions
ADD
Show: