private void AppDebugger_BreakPoint(IRemoteDebugApplicationThread prpt, tagBREAKREASON br, IActiveScriptErrorDebug pError)
        {
            RemoteDebugApplicationThread rdat = null;

            if (prpt != null)
            {
                rdat = new RemoteDebugApplicationThread(prpt);
            }

            ActiveScriptErrorDebug ased = null;

            if (pError != null)
            {
                ased = new ActiveScriptErrorDebug(pError);
            }

            BreakPoint?.Invoke(rdat, br.ToBreakReason(), ased);
        }
 public void onHandleBreakPoint(IRemoteDebugApplicationThread prpt, tagBREAKREASON br, IActiveScriptErrorDebug pError)
 {
     BreakPoint?.Invoke(prpt, br, pError);
 }
 internal RemoteDebugApplicationThread(IRemoteDebugApplicationThread prpt)
 {
     this.prpt = prpt;
 }