AddParam(String,String) Method
- Last UpdatedNov 06, 2025
- 1 minute read
Function to add a new parameter and its value to the current (ie. most recently added) command in the batch
'Declaration
Public Overloads Sub AddParam( _
ByVal paramName As String, _
ByVal paramValue As String _
)
'Usage
Dim instance As XMLBatchExecBuilder
Dim paramName As String
Dim paramValue As String
instance.AddParam(paramName, paramValue)
public void AddParam(
string paramName,
string paramValue
)
Parameters
- paramName
- The parameter name as a string
- paramValue
- The parameter value as a string