NameValueCollectionExtensions.CopyTo Method (NameValueCollection, IDictionary(Of String, Object))
Copies the specified collection to the specified destination.
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) _ ) 'Usage Dim collection As NameValueCollection Dim destination As IDictionary(Of String, Object) collection.CopyTo(destination)
Parameters
- collection
- Type: System.Collections.Specialized.NameValueCollection
The collection.
- destination
- Type: System.Collections.Generic.IDictionary(Of String, Object)
The destination.
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: