Validate Method (ObjectCommand)
- Last UpdatedNov 06, 2025
- 1 minute read
This function will validate the values in the parameter ParamValues using the rules configured in ObjectCommand.Parameters.
'Declaration
Public Sub Validate( _
ByVal parameterValues As Hashtable _
)
'Usage
Dim instance As ObjectCommand
Dim parameterValues As Hashtable
instance.Validate(parameterValues)
public void Validate(
Hashtable parameterValues
)
Parameters
- parameterValues
- The parameter and values you wanted validated. The key for the dictionary should be the parameter name and the value for the dictionary should be the Value for the parameter. NOTE: The key MUST be in lowercase.