System.Xml.Xsl.XsltOld.Processor.OnInstructionExecute C# (CSharp) Method

OnInstructionExecute() private method

private OnInstructionExecute ( ) : void
return void
        internal void OnInstructionExecute() {
            Debug.Assert(this.Debugger != null, "We don't generate calls this function if ! debugger");
            DebuggerFrame dbgFrame = (DebuggerFrame) this.debuggerStack.Peek();
            Debug.Assert(dbgFrame != null, "PushDebuggerStack() wasn't ever called");
            dbgFrame.actionFrame = (ActionFrame) this.actionStack.Peek();
            this.Debugger.OnInstructionExecute((IXsltProcessor) this);
        }

Usage Example

Exemplo n.º 1
0
 internal override void Execute(Processor processor, ActionFrame frame)
 {
     if (frame.State == Initialized)
     {
         processor.OnInstructionExecute();
     }
     base.Execute(processor, frame);
 }
All Usage Examples Of System.Xml.Xsl.XsltOld.Processor::OnInstructionExecute