Click or drag to resize

OperationArgumentsGetSubroutineArgs Method

Linkar Framework for .NET and Core


Compose the 3 items (CUSTOMVARS, OPTIONS and INPUTDATA) of the Subroutine operation.

Namespace: Linkar.Functions
Assembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax
public static string GetSubroutineArgs(
	string subroutineName,
	int argsNumber,
	string arguments,
	string customVars
)

Parameters

subroutineName  String
Name of BASIC subroutine to execute.
argsNumber  Int32
Number of arguments
arguments  String
The subroutine arguments list. Use StringFunctions.ComposeSubroutineArgs function to compose this string.
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

String
A string ready to be used in Linkar.ExecuteDirectOperation and Linkar.ExecutePersistentOperation.
See Also