DataFunctions.CloneObject
Use this method to clone a SimpleList or Dictionary object. This method performs a deep copy of the cloned object, so new memory is allocated for the clone.
Definition
Function CloneObject(pdispSource As Object) As Object
Parameters
pdispSource
A reference to the SimpleList or Dictionary object to be cloned.
Return Values
If this method completes successfully, it returns a reference to the SimpleList or Dictionary object clone.
Error Values
This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to standard COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors. Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.
Remarks
For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.
Example
' dSource and dCopy are Dictionary objects
Set MSCSDataFunctions = Server.CreateObject("Commerce.DataFunctions")
dCopy = MSCSDataFunctions.CloneObject(dSource)