| OperationArgumentsGetReadArgs Method |
Linkar Framework .NET (Core and Framework)
Compose the 3 items (CUSTOMVARS, OPTIONS and INPUTDATA) of the Read operation.
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax public static string GetReadArgs(
string filename,
string recordIds,
string dictionaries,
ReadOptions readOptions,
string customVars
)
Public Shared Function GetReadArgs (
filename As String,
recordIds As String,
dictionaries As String,
readOptions As ReadOptions,
customVars As String
) As String
public:
static String^ GetReadArgs(
String^ filename,
String^ recordIds,
String^ dictionaries,
ReadOptions^ readOptions,
String^ customVars
)
static member GetReadArgs :
filename : string *
recordIds : string *
dictionaries : string *
readOptions : ReadOptions *
customVars : string -> string
Parameters
- filename String
- File name to read.
- recordIds String
- A list of item IDs to read, separated by the Record Separator character (30). Use StringFunctions.ComposeRecordIds to compose this string.
- dictionaries String
- List of dictionaries to read, separated by space. If this list is not set, all fields are returned.
- readOptions ReadOptions
- Object that defines the different reading options of the Function: Calculated, dictClause, conversion, formatSpec, originalRecords.
- customVars String
- Free text sent to the database allows management of additional behaviours in SUB.LK.MAIN.CONTROL.CUSTOM, which is called when this parameter is set.
Return Value
StringA string ready to be used in Linkar.ExecuteDirectOperation and Linkar.ExecutePersistentOperation.
See Also