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

XmlSeverityType.cs « System.Xml.Schema « System.XML « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f16d15967e80a8c9e80631f70523bd1c2c30d5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Author: Dwivedi, Ajay kumar
//            Adwiv@Yahoo.com
using System;

namespace System.Xml.Schema
{
	/// <summary>
	/// Summary description for XmlSeverityType.
	/// </summary>
	public enum XmlSeverityType 
	{
		Error = 0x00000000, 
		Warning = 0x00000001, 
	}
}