| LinkarExecuteDirectOperation Method |
Linkar Framework .NET (Core and Framework)
Execute "direct operations". These operations don't stablish a permanent session. Once the operations is finished, the session is closed.
Namespace: LinkarAssembly: Linkar (in Linkar.dll) Version: 2.3.1
Syntax public static string ExecuteDirectOperation(
CredentialOptions credentialOptions,
byte operationCode,
string operationArgs,
byte inputDataFormat,
byte outputDataFormat,
int receiveTimeout
)
Public Shared Function ExecuteDirectOperation (
credentialOptions As CredentialOptions,
operationCode As Byte,
operationArgs As String,
inputDataFormat As Byte,
outputDataFormat As Byte,
receiveTimeout As Integer
) As String
public:
static String^ ExecuteDirectOperation(
CredentialOptions^ credentialOptions,
unsigned char operationCode,
String^ operationArgs,
unsigned char inputDataFormat,
unsigned char outputDataFormat,
int receiveTimeout
)
static member ExecuteDirectOperation :
credentialOptions : CredentialOptions *
operationCode : byte *
operationArgs : string *
inputDataFormat : byte *
outputDataFormat : byte *
receiveTimeout : int -> string
Parameters
- credentialOptions CredentialOptions
- The credentials for access to LinkarSERVER.
- operationCode Byte
- Code of the operation to be performed.
- operationArgs String
- Specific arguments of every operation.
- inputDataFormat Byte
- Format of the input data.
- outputDataFormat Byte
- Format of the output data.
- receiveTimeout Int32
- Maximum time in seconds to wait the response from LinkarSERVER. A value less or equal to 0, wait for response indefinitely.
Return Value
StringComplex string with the result of the operation.
Exceptions See Also