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