ValidationCompareOperator.cs 476 B

12345678910111213141516171819202122232425
  1. /**
  2. * Namespace: System.Web.UI.WebControls
  3. * Enumeration: ValidationCompareOperator
  4. *
  5. * Author: Gaurav Vaish
  6. * Maintainer: [email protected]
  7. * Contact: <[email protected]>, <[email protected]>
  8. * Status: 100%
  9. *
  10. * (C) Gaurav Vaish (2001)
  11. */
  12. namespace System.Web.UI.WebControls
  13. {
  14. public enum ValidationCompareOperator
  15. {
  16. Equal,
  17. NotEqual,
  18. GreaterThan,
  19. GreaterThanEqual,
  20. LessThan,
  21. LessThenEqual,
  22. DataTypeCheck
  23. }
  24. }