NameValueCollectionExtensions.CopyTo Method (NameValueCollection, IDictionary(Of String, Object), Boolean)

Copies the specified collection to the specified destination, and optionally replaces previous entries.

Namespace:  System.Web.Mvc
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 _
)
'Usage
Dim collection As NameValueCollection 
Dim destination As IDictionary(Of String, Object)
Dim replaceEntries As Boolean 

collection.CopyTo(destination, replaceEntries)

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 https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108).aspx or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).aspx.
Show: