Click or drag to resize

BatchJobFilterConstraintType Enumeration

The filter constraint type. Defines how filter parameters and actual values will be compared.

Namespace:  PDTec.IceNet.Domain.BatchHub.Service.Interface
Assembly:  PDTec.IceNet.Domain.BatchHub (in PDTec.IceNet.Domain.BatchHub.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
public enum BatchJobFilterConstraintType
Members
  Member nameValueDescription
Equal0 Check for equality.
NotEqual1 Check for inequality.
Like2 Check for string pattern (can include '*' and '?' wildcards).
Between3 Check if the value is beween first and second parameter.
Less4 Check if the value is less than the first parameter.
LessEqual5 Check if the value is less or equal than the first parameter.
Greater6 Check if the value is greater than the first parameter.
GreaterEqual7 Check if the value is greater or equal than the first parameter.
See Also