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

XmlSchemaContentProcessing.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: 2cd60231a0373ecc568bf0fd0f9e021406585590 (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 XmlSchemaContentProcessing.
	/// </summary>
	public enum XmlSchemaContentProcessing 
	{
		[XmlIgnore]
		None	= 0,
		[XmlEnum("skip")]
		Skip	= 1,
		[XmlEnum("lax")]
		Lax		= 2, 
		[XmlEnum("strict")]
		Strict	= 3, 
	}
}