IValidator.cs 345 B

123456789101112131415161718192021
  1. //
  2. // System.Web.UI.IValidator.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.UI
  12. {
  13. public interface IValidator
  14. {
  15. void Validate();
  16. string ErrorMessage {get; set;}
  17. bool IsValid {get; set;}
  18. }
  19. }