Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Parameter::Clone Method ()

 

Returns a duplicate of the current Parameter instance.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

protected:
virtual Parameter^ Clone()

Return Value

Type: System.Web.UI.WebControls::Parameter^

A Parameter that is an exact duplicate of the current one.

The Clone method calls the Parameter(Parameter^) copy constructor to initialize a new instance of the Parameter class with the values of the current instance.

If you extend the Parameter class, you can override the Clone method to include any state that should be copied to a new instance of your derived class.

The following code example demonstrates how to call the Parameter(Parameter^) constructor from a class that extends the Parameter class to implement correct object cloning behavior for the class. This code example is part of a larger example provided for the Parameter class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft