System.Tether.Manager.TTetheringManagerCommand.ToString

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function ToString: string;

C++

System::UnicodeString __fastcall ToString();

Properties

Type Visibility Source Unit Parent
function public
System.Tether.Manager.pas
System.Tether.Manager.hpp
System.Tether.Manager TTetheringManagerCommand

Description

Returns a string representation of the command.

The string representation of a command uses the following format:

<CommandText><Separator><ConnectionString><Separator><Version><Separator><Parameters>

Where:

  • <CommandText> is the value of the CommandText field.
  • <Separator> is the value of the TetheringSeparator.
  • <ConnectionString> is the value of the ConnectionString field.
  • <Version> is the value of the Version field.
  • <Parameters> are the parameters separated by the TetheringSeparator.

Finally, ToString escapes the resulting string for the TetheringCommandSeparator, adds the TetheringCommandSeparator to the end of the string and returns the resulting string.

See Also