Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ XmlSchemaSet() [2/2]

System.Xml.Schema.XmlSchemaSet.XmlSchemaSet ( XmlNameTable nameTable)
inline

Definition at line 183 of file XmlSchemaSet.cs.

184 {
185 if (nameTable == null)
186 {
187 throw new ArgumentNullException("nameTable");
188 }
190 _schemas = new SortedList();
196 _readerSettings = new XmlReaderSettings();
197 if (_readerSettings.GetXmlResolver() == null)
198 {
199 _readerSettings.XmlResolver = new XmlUrlResolver();
201 }
203 _readerSettings.DtdProcessing = DtdProcessing.Prohibit;
204 _compilationSettings = new XmlSchemaCompilationSettings();
205 _cachedCompiledInfo = new SchemaInfo();
206 _compileAll = true;
207 }
readonly XmlReaderSettings _readerSettings
readonly XmlNameTable _nameTable
readonly Hashtable _targetNamespaces
readonly Hashtable _chameleonSchemas
void InternalValidationCallback(object sender, ValidationEventArgs e)
XmlSchemaCompilationSettings _compilationSettings
readonly ValidationEventHandler _internalEventHandler
readonly Hashtable _schemaLocations
readonly SortedList _schemas
ValidationEventHandler _eventHandler

References System.Xml.Schema.XmlSchemaSet._cachedCompiledInfo, System.Xml.Schema.XmlSchemaSet._chameleonSchemas, System.Xml.Schema.XmlSchemaSet._compilationSettings, System.Xml.Schema.XmlSchemaSet._compileAll, System.Xml.Schema.XmlSchemaSet._eventHandler, System.Xml.Schema.XmlSchemaSet._internalEventHandler, System.Xml.Schema.XmlSchemaSet._nameTable, System.Xml.Schema.XmlSchemaSet._readerSettings, System.Xml.Schema.XmlSchemaSet._schemaLocations, System.Xml.Schema.XmlSchemaSet._schemas, System.Xml.Schema.XmlSchemaSet._targetNamespaces, System.Xml.Dictionary, System.Xml.XmlReaderSettings.GetXmlResolver(), and System.Xml.Schema.XmlSchemaSet.InternalValidationCallback().