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

XmlSchemaForm.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: 8efb7e3d5483d5564bb08f98b575007a0b18c93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Author: Dwivedi, Ajay kumar
//            Adwiv@Yahoo.com
using System;
using System.Xml.Serialization;
namespace System.Xml.Schema
{
	/// <summary>
	/// Summary description for XmlSchemaForm.
	/// </summary>
	public enum XmlSchemaForm 
	{
		[XmlIgnore]
		None = 0x00000000, 
		[XmlEnum("qualified")]
		Qualified = 0x00000001, 
		[XmlEnum("unqualified")]
		Unqualified = 0x00000002, 
	}
}