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

XmlSchemaContentType.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: dc7bda2433ebf0d8ca68d38c8a0cf47ab9e97737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Author: Dwivedi, Ajay kumar
//            Adwiv@Yahoo.com
using System;

namespace System.Xml.Schema
{
	/// <summary>
	/// Summary description for XmlSchemaContentType.
	/// </summary>
	public enum XmlSchemaContentType 
	{
		TextOnly	= 0, 
		Empty		= 1, 
		ElementOnly = 2, 
		Mixed		= 3, 
	}
}