AddFilter(String,Nullable<Boolean>) Method
- Last UpdatedNov 06, 2025
- 1 minute read
Function to add a new filter and its value to the current (ie. most recently added) request in the batch
'Declaration
Public Overloads Sub AddFilter( _
ByVal fieldName As String, _
ByVal fieldValue As Nullable(Of Boolean) _
)
'Usage
Dim instance As XMLBatchReadBuilder
Dim fieldName As String
Dim fieldValue As Nullable(Of Boolean)
instance.AddFilter(fieldName, fieldValue)
public void AddFilter(
string fieldName,
Nullable<bool> fieldValue
)
Parameters
- fieldName
- The field name of the filter as a string
- fieldValue
- The value of the filter as a bool?