dotConnect for Mailchimp Documentation
Devart.Data Namespace / SqlShimCommand Class / Clone Method
Example

Clone Method (SqlShimCommand)
Creates a new object that is a copy of the current SqlShimCommand instance.
Syntax
'Declaration
 
Public Function Clone() As SqlShimCommand
 

Return Value

A new SqlShimCommand object in which all property values are the same as the original.
Remarks
Use this method when you need to create a new SqlShimCommand object that is absolutely like existing one.
Example
This example shows how to clone a Devart.Data.MailChimp.MailChimpCommand . To make sure all the properties are inherited, one of them (CommandText) is written to the console.
public void CloneACommand()
{
  MailChimpCommand mailchimpCommand = new MailChimpCommand("SELECT * FROM Folders");
        MailChimpCommand mailchimpCommand2 = (MailChimpCommand)mailchimpCommand.Clone();
  Console.WriteLine(mailchimpCommand2.CommandText);
}
Public Sub CloneACommand()
  Dim mailchimpCommand As New MailChimpCommand("SELECT * FROM Folders")
  Dim mailchimpCommand2 As MailChimpCommand = CType(mailchimpCommand.Clone(), MailChimpCommand)
  Console.WriteLine(mailchimpCommand2.CommandText)
End Sub
See Also