AddFilter(String,Nullable<Int32>) Method
- Last UpdatedNov 06, 2025
- 1 minute read
Adds a filter or parameter to a GetAll or GetSpecific command
'Declaration
Public Overloads Sub AddFilter( _
ByVal fieldName As String, _
ByVal fieldValue As Nullable(Of Integer) _
)
'Usage
Dim instance As XMLReadBuilder
Dim fieldName As String
Dim fieldValue As Nullable(Of Integer)
instance.AddFilter(fieldName, fieldValue)
public void AddFilter(
string fieldName,
Nullable<int> fieldValue
)
Parameters
- fieldName
- The name of the filter field name to add as a string
- fieldValue
- The value of the filter to add as a int?