| 12345678910111213141516171819202122232425262728293031323334353637 |
- // Author: Dwivedi, Ajay kumar
- // [email protected]
- using System;
- namespace System.Xml.Schema
- {
- /// <summary>
- /// Summary description for ValidationEventArgs.
- /// </summary>
- public sealed class ValidationEventArgs : EventArgs
- {
- private XmlSchemaException exception;
- private string message;
- private XmlSeverityType severity;
- private ValidationEventArgs()
- {}
- public XmlSchemaException Exception
- {
- get{ return exception; }
- }
- public string Message
- {
- get{ return message; }
- }
- public XmlSeverityType Severity
- {
- get{ return severity; }
- }
- }
- /// <summary>
- ///
- /// </summary>
- public delegate void ValidationEventHandler(object sender,ValidationEventArgs e);
- }
|