Click or drag to resize

LinkarCltSendCommandAsync_Text Method (LinkarCltOperationAsyncCallbackString, String, ENVELOPE_FORMAT, Int32)

Allows making different operations, through some templates in standar format (XML, JSON), in a Asynchronous way.
Persistent Method.

Namespace:  LinkarClient
Assemblies:   LinkarClientCore (in LinkarClientCore.dll) Version: 2.1.0.0
  LinkarClientMono (in LinkarClientMono.dll) Version: 2.1.0.0 (2.1.0.0)
  LinkarClient (in LinkarClient.dll) Version: 2.1.0.0 (2.1.0.0)
Syntax
public void SendCommandAsync_Text(
	OperationAsyncCallbackString cmdSendCommandFinished,
	string command,
	ENVELOPE_FORMAT commandFormat = ENVELOPE_FORMAT.XML,
	int receiveTimeout = -1
)

Parameters

cmdSendCommandFinished
Type: LinkarClientOperationAsyncCallbackString
Return type in asynchronous methods
command
Type: SystemString
Content of the operation you want to send.
commandFormat (Optional)
Type: LinkarCommonENVELOPE_FORMAT
Indicates in what format you are doing the operation: XML or JSON.
receiveTimeout (Optional)
Type: SystemInt32
It's the maximum time in seconds that the client will keep waiting the answer by the server. By default -1 (wait indefinitely).
Remarks
The command argument is a string of characters where you specify the operation, along with your options, that you want to execute. To facilitate the use of SendCommand, a list of templates is provided for each operation along with all its options. You can consult the XML and JSON templates herehttps://github.com/kosday/Linkar-from-Operating-System-shell-lksendcomand-command_self
Examples
LinkarClt lkClt = new LinkarClt();
CredentialsOptions crdOpt = new CredentialsOptions("127.0.0.1", 11300, "admin", "admin", "ENTRYPOINT");
lkClt.Login(crdOpt);

string commandTemplate = 
"<COMMAND NAME=\"READ\">\r\n" +
  "    <CALCULATED>False</CALCULATED>\r\n" +
  "    <DICTIONARIES>False</DICTIONARIES>\r\n" +
  "    <CONVERSION>False</CONVERSION>\r\n" +
  "    <FORMAT_SPEC>False</FORMAT_SPEC>\r\n" +
  "    <ORIGINAL_RECORDS>False</ORIGINAL_RECORDS>\r\n" +
  "    <CUSTOM_VARS></CUSTOM_VARS>\r\n" +
  "    <OUTPUT_FORMAT>MV</OUTPUT_FORMAT>\r\n" +
  "    <FILE_NAME>LK.CUSTOMERS</FILE_NAME>\r\n" +
  "    <RECORD_IDS>\r\n" +
  "        <ID>2</ID>\r\n" +
  "    </RECORD_IDS>\r\n" +
  "    <RECORD_DICTCLAUSE></RECORD_DICTCLAUSE>\r\n" +
"</COMMAND>";
ENVELOPE_FORMAT commandFormat = ENVELOPE_FORMAT.XML;
lkClt.SendCommandAsync_Text(new LinkarClt.OperationAsyncCallbackString(ExecuteAsyncFinished), commandTemplate, commandFormat);
See Also