Exemplo n.º 1
0
 public Compiler(object debugger)
 {
     if (debugger != null)
     {
         this.debugger = new XsltDebuggerWrapper(debugger);
     }
 }
Exemplo n.º 2
0
 public Compiler(object debugger, bool strictMSXslNodeSet)
 {
     if (debugger != null)
     {
         this.debugger = new XsltDebuggerWrapper(debugger);
     }
     this.strictMSXslNodeSet = strictMSXslNodeSet;
 }
Exemplo n.º 3
0
		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);
		}
Exemplo n.º 4
0
 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);
     }
 }
Exemplo n.º 5
0
		public Compiler (object debugger)
		{
			if (debugger != null)
				this.debugger = new XsltDebuggerWrapper (debugger);
		}
Exemplo n.º 6
0
		public Compiler (object debugger, bool strictMSXslNodeSet)
		{
			if (debugger != null)
				this.debugger = new XsltDebuggerWrapper (debugger);
			this.strictMSXslNodeSet = strictMSXslNodeSet;
		}