Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IValidator.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47b418aee392643adf1c7edc1f7abb3d3b76a50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Web.UI.IValidator.cs
//
// Author:
//   Bob Smith <bob@thestuff.net>
//
// (C) Bob Smith
//

using System;
using System.Web;

namespace System.Web.UI
{
        public interface IValidator
        {
                void Validate();
                string ErrorMessage {get; set;}
                bool IsValid {get; set;}
        }
}