// Constructor.
	public XmlDTDReader(XmlParserContext context)
			: base(null)
			{
				this.context = context;
				this.input = null;
				this.resolver = null;
			}
Exemple #2
0
 // 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;
			}
Exemple #4
0
 // 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;
 }