public Compiler(object debugger) { if (debugger != null) { this.debugger = new XsltDebuggerWrapper(debugger); } }
public Compiler(object debugger, bool strictMSXslNodeSet) { if (debugger != null) { this.debugger = new XsltDebuggerWrapper(debugger); } this.strictMSXslNodeSet = strictMSXslNodeSet; }
public XslTransformProcessor (CompiledStylesheet style, object debugger) { this.XPathContext = new XsltCompiledContext (this); this.compiledStyle = style; this.style = style.Style; if (debugger != null) this.debugger = new XsltDebuggerWrapper (debugger); }
public XslTransformProcessor(CompiledStylesheet style, object debugger) { this.XPathContext = new XsltCompiledContext(this); this.compiledStyle = style; this.style = style.Style; if (debugger != null) { this.debugger = new XsltDebuggerWrapper(debugger); } }
public Compiler (object debugger) { if (debugger != null) this.debugger = new XsltDebuggerWrapper (debugger); }
public Compiler (object debugger, bool strictMSXslNodeSet) { if (debugger != null) this.debugger = new XsltDebuggerWrapper (debugger); this.strictMSXslNodeSet = strictMSXslNodeSet; }