System.Xml.Schema.XmlSchemaValidator.AddXmlNamespaceSchema C# (CSharp) 메소드

AddXmlNamespaceSchema() 개인적인 메소드

private AddXmlNamespaceSchema ( ) : void
리턴 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();
        }