public XmlSchemaSet(XmlNameTable nameTable)
 {
     if (nameTable == null)
     {
         throw new ArgumentNullException("nameTable");
     }
     this.nameTable = nameTable;
     this.schemas = new SortedList();
     this.schemaLocations = new Hashtable();
     this.chameleonSchemas = new Hashtable();
     this.targetNamespaces = new Hashtable();
     this.internalEventHandler = new System.Xml.Schema.ValidationEventHandler(this.InternalValidationCallback);
     this.eventHandler = this.internalEventHandler;
     this.readerSettings = new XmlReaderSettings();
     this.readerSettings.NameTable = nameTable;
     this.readerSettings.DtdProcessing = DtdProcessing.Prohibit;
     this.compilationSettings = new XmlSchemaCompilationSettings();
     this.cachedCompiledInfo = new SchemaInfo();
     this.compileAll = true;
 }
Пример #2
0
 public XmlSchemaSet(XmlNameTable nameTable)
 {
     if (nameTable == null)
     {
         throw new ArgumentNullException("nameTable");
     }
     this.nameTable                    = nameTable;
     this.schemas                      = new SortedList();
     this.schemaLocations              = new Hashtable();
     this.chameleonSchemas             = new Hashtable();
     this.targetNamespaces             = new Hashtable();
     this.internalEventHandler         = new System.Xml.Schema.ValidationEventHandler(this.InternalValidationCallback);
     this.eventHandler                 = this.internalEventHandler;
     this.readerSettings               = new XmlReaderSettings();
     this.readerSettings.NameTable     = nameTable;
     this.readerSettings.DtdProcessing = DtdProcessing.Prohibit;
     this.compilationSettings          = new XmlSchemaCompilationSettings();
     this.cachedCompiledInfo           = new SchemaInfo();
     this.compileAll                   = true;
 }
Пример #3
0
 public static void Validate(this System.Xml.Linq.XElement source, System.Xml.Schema.XmlSchemaObject partialValidationType, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler, bool addSchemaInfo)
 {
 }
Пример #4
0
 public static void Validate(this System.Xml.Linq.XDocument source, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler, bool addSchemaInfo)
 {
 }
Пример #5
0
 public static void Validate(this System.Xml.Linq.XAttribute source, System.Xml.Schema.XmlSchemaObject partialValidationType, System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
 }
Пример #6
0
 public virtual bool CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
     throw null;
 }
Пример #7
0
 public override bool CheckValidity(System.Xml.Schema.XmlSchemaSet schemas, System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
     throw new NotSupportedException(SkylineToolkit.Xml.Linq.Res.GetString(SkylineToolkit.Xml.Linq.Res.NotSupported_CheckValidity));
 }
Пример #8
0
 public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler, System.Xml.XmlNode nodeToValidate)
 {
 }
Пример #9
0
 public void Validate(System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
 }
 public void Compile(System.Xml.Schema.ValidationEventHandler handler, bool fullCompile)
 {
 }
Пример #11
0
 // Methods
 public static WebReferenceOptions Read(System.IO.TextReader reader, System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
 }
Пример #12
0
 public static WebReferenceOptions Read(System.IO.Stream stream, System.Xml.Schema.ValidationEventHandler validationEventHandler)
 {
 }
Пример #13
0
		public XmlSchemaReader(System.Xml.XmlReader reader, System.Xml.Schema.ValidationEventHandler handler)
		{
			 throw new NotImplementedException(".ctor");
		}