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

XmlSchemaInfo.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: 5e9960635f7d942f7574dd38ac32eaed89fca77b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Xml;
using System.Collections;

namespace System.Xml.Schema
{
	/// <summary>
	/// This class would store the infomation we need during compilation.
	/// </summary>
	internal class XmlSchemaInfo
	{
		internal XmlSchemaInfo()
		{
			IDCollection = new Hashtable();
		}

		internal string TargetNamespace = null;
		internal XmlSchemaDerivationMethod FinalDefault = XmlSchemaDerivationMethod.None;
		internal XmlSchemaDerivationMethod BlockDefault = XmlSchemaDerivationMethod.None;
		internal XmlSchemaForm ElementFormDefault = XmlSchemaForm.None;
		internal XmlSchemaForm AttributeFormDefault = XmlSchemaForm.None;
		internal Hashtable IDCollection;
	}
}