| LinkarExecutePersistentOperation Method |
Linkar Framework for .NET and Core
Execute "persistent operations". These operations required that a session will be stablished previously with Login operation.
Namespace: LinkarAssembly: Linkar (in Linkar.dll) Version: 2.3.1
Syntax public static string ExecutePersistentOperation(
ConnectionInfo connectionInfo,
byte operationCode,
string operationArgs,
byte inputDataFormat,
byte outputDataFormat,
int receiveTimeout
)
Public Shared Function ExecutePersistentOperation (
connectionInfo As ConnectionInfo,
operationCode As Byte,
operationArgs As String,
inputDataFormat As Byte,
outputDataFormat As Byte,
receiveTimeout As Integer
) As String
public:
static String^ ExecutePersistentOperation(
ConnectionInfo^ connectionInfo,
unsigned char operationCode,
String^ operationArgs,
unsigned char inputDataFormat,
unsigned char outputDataFormat,
int receiveTimeout
)
static member ExecutePersistentOperation :
connectionInfo : ConnectionInfo *
operationCode : byte *
operationArgs : string *
inputDataFormat : byte *
outputDataFormat : byte *
receiveTimeout : int -> string
Parameters
- connectionInfo ConnectionInfo
- Contains the data necessary to access an established LinkarSERVER session.
- 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