NameValueCollectionExtensions.CopyTo Method (NameValueCollection, IDictionary<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)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Sub CopyTo ( _
    collection As NameValueCollection, _
    destination As IDictionary(Of String, Object), _
    replaceEntries As Boolean _
)
public static void CopyTo(
    this NameValueCollection collection,
    IDictionary<string, Object> destination,
    bool replaceEntries
)
[ExtensionAttribute]
public:
static void CopyTo(
    NameValueCollection^ collection, 
    IDictionary<String^, Object^>^ destination, 
    bool replaceEntries
)

Parameters

  • 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).

See Also

Reference

NameValueCollectionExtensions Class

CopyTo Overload

System.Web.Mvc Namespace