AddParam(String,Nullable<DateTime>) Method
- Last UpdatedNov 06, 2025
- 1 minute read
Adds a parameter to a specific Exec or to a standard Write command Throws exception if the call fails for any reason
'Declaration
Public Overloads Sub AddParam( _
ByVal paramName As String, _
ByVal paramValue As Nullable(Of Date) _
)
'Usage
Dim instance As XMLExecBuilder
Dim paramName As String
Dim paramValue As Nullable(Of Date)
instance.AddParam(paramName, paramValue)
public void AddParam(
string paramName,
Nullable<DateTime> paramValue
)
Parameters
- paramName
- The name of the parameter to add as a string
- paramValue
- The value of the parameter to add as a DateTime?