// Constructor. public XmlDTDReader(XmlParserContext context) : base(null) { this.context = context; this.input = null; this.resolver = null; }
// Initialize this dtd reader. public void Init (XmlParserInput input, XmlResolver resolver) { base.ErrorHandler = input.ErrorHandler; this.input = new XmlDTDParserInput(input, context.NameTable); this.resolver = resolver; }