dotConnect for QuickBooks Online Documentation
Devart.Data.QuickBooks Namespace / QuickBooksCommand Class / Clone Method
Example

In This Topic
    Clone Method (QuickBooksCommand)
    In This Topic
    Creates a new object that is a copy of the current QuickBooksCommand instance.
    Creates a new object that is a copy of the current QuickBooksCommand instance.
    Syntax
    'Declaration
     
    Public Shadows Function Clone() As QuickBooksCommand
    public new QuickBooksCommand Clone()

    Return Value

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