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

XmlSchemaUse.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: 8015edd8ed298ff4ff5d157c7637d13b64a44473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Author: Dwivedi, Ajay kumar
//            Adwiv@Yahoo.com
using System;
using System.Xml.Serialization;

namespace System.Xml.Schema
{
	/// <summary>
	/// Summary description for XmlSchemaUse.
	/// </summary>
	public enum XmlSchemaUse 
	{
		[XmlIgnore]
		None = 0x00000000, 
		[XmlEnum("optional")]
		Optional = 0x00000001, 
		[XmlEnum("prohibited")]
		Prohibited = 0x00000002, 
		[XmlEnum("required")]
		Required = 0x00000003, 
	}
}