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: 6.0.0.0 (6.0.6225.27214)
Syntax
C#
public enum BatchJobFilterConstraintType
Members
  Member nameValueDescription
Equal0 Check for equality.
Like1 Check for string pattern (can include '*' and '?' wildcards).
Between2 Check if the value is beween first and second parameter.
Less3 Check if the value is less than the first parameter.
LessEqual4 Check if the value is less or equal than the first parameter.
Greater5 Check if the value is greater than the first parameter.
GreaterEqual6 Check if the value is greater or equal than the first parameter.
See Also