| OperationArgumentsGetSubroutineArgs Method |
Linkar Framework for .NET and Core
Compose the 3 items (CUSTOMVARS, OPTIONS and INPUTDATA) of the Subroutine operation.
Namespace: Linkar.FunctionsAssembly: Linkar.Functions (in Linkar.Functions.dll) Version: 2.3.1
Syntax public static string GetSubroutineArgs(
string subroutineName,
int argsNumber,
string arguments,
string customVars
)
Public Shared Function GetSubroutineArgs (
subroutineName As String,
argsNumber As Integer,
arguments As String,
customVars As String
) As String
public:
static String^ GetSubroutineArgs(
String^ subroutineName,
int argsNumber,
String^ arguments,
String^ customVars
)
static member GetSubroutineArgs :
subroutineName : string *
argsNumber : int *
arguments : string *
customVars : string -> string
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
StringA string ready to be used in Linkar.ExecuteDirectOperation and Linkar.ExecutePersistentOperation.
See Also