System.Xml.Schema.XmlSchemaValidator.AddXmlNamespaceSchema C# (CSharp) Méthode

AddXmlNamespaceSchema() private méthode

private AddXmlNamespaceSchema ( ) : void
Résultat void
        private void AddXmlNamespaceSchema()
        {
            XmlSchemaSet localSet = new XmlSchemaSet(); //Avoiding cost of incremental compilation checks by compiling schema in a seperate set and adding compiled set
            localSet.Add(Preprocessor.GetBuildInSchema());
            localSet.Compile();
            _schemaSet.Add(localSet);
            RecompileSchemaSet();
        }