System.Xml.XmlTextReaderImpl.DtdParserProxy.Parse C# (CSharp) Méthode

Parse() private méthode

private Parse ( bool saveInternalSubset ) : void
saveInternalSubset bool
Résultat void
            internal void Parse( bool saveInternalSubset ) {
                if ( dtdParser == null ) {
                    throw new InvalidOperationException();
                }
                dtdParser.Parse( saveInternalSubset );
            }

Usage Example

 static internal SchemaInfo Parse( XmlTextReaderImpl tr, string baseUri, string docTypeName, string publicId, string systemId, string internalSubset ) {
     XmlTextReaderImpl.DtdParserProxy dtdParserProxy = new XmlTextReaderImpl.DtdParserProxy( baseUri, docTypeName, publicId, systemId, internalSubset, tr ); 
     dtdParserProxy.Parse( false );
     return dtdParserProxy.DtdSchemaInfo;
 }
XmlTextReaderImpl.DtdParserProxy