* SessionStateModule.cs: If using cookieless sessions add an
[mono.git] / mcs / class / System.Web / System.Web.UI / IValidator.cs
1 //
2 // System.Web.UI.IValidator.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 using System;
11 using System.Web;
12
13 namespace System.Web.UI
14 {
15         public interface IValidator
16         {
17                 void Validate();
18                 string ErrorMessage {get; set;}
19                 bool IsValid {get; set;}
20         }
21 }