| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: ServerValidateEventArgs
- *
- * Author: Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status: 100%
- *
- * (C) Gaurav Vaish (2002)
- */
- using System;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public sealed class ServerValidateEventArgs : EventArgs
- {
- private bool isValid;
- private string value;
- public ServerValidateEventArgs(string value, bool isValid)
- {
- this.value = value;
- this.isValid = isValid;
- }
- public bool IsValid
- {
- get { return isValid; }
- set { isValid = value; }
- }
- public string Value
- {
- get { return value; }
- }
- }
- }
|