Parameter::Clone Method ()
.NET Framework (current version)
Returns a duplicate of the current Parameter instance.
Assembly: System.Web (in System.Web.dll)
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: