コード例 #1
0
        public static Thread raiseO2MDbgAction(IM_O2MdbgActions _o2MdbgAction)
        {
            var action = new KM_O2MdbgAction();

            action.o2MdbgAction = _o2MdbgAction;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #2
0
        public static Thread raiseO2MDbgDebugProcessRequest(string assemblyToDebug)
        {
            var action = new KM_O2MdbgAction();

            action.filename     = assemblyToDebug;
            action.o2MdbgAction = IM_O2MdbgActions.debugProcessRequest;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #3
0
        public static Thread raiseO2MDbgCommandExecutionMessage(IM_O2MdbgActions _o2MdbgAction, string _lastCommandExecutionMessage)
        {
            var action = new KM_O2MdbgAction();

            action.lastCommandExecutionMessage = _lastCommandExecutionMessage;
            action.o2MdbgAction = _o2MdbgAction;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #4
0
        public static Thread raiseO2MDbg_SetBreakPointOnFile(string fileName, int lineNumber)
        {
            var action = new KM_O2MdbgAction();

            action.line         = lineNumber;
            action.filename     = fileName;
            action.o2MdbgAction = IM_O2MdbgActions.setBreakpointOnFile;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #5
0
        public static Thread raiseO2MDbgDebugMethodInfoRequest(MethodInfo methodToDebug, string loadDllsFrom)
        {
            var action = new KM_O2MdbgAction();

            action.loadDllsFrom = loadDllsFrom;
            action.method       = methodToDebug;
            action.o2MdbgAction = IM_O2MdbgActions.debugMethodInfoRequest;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #6
0
        public static Thread raiseO2MDbgBreakEvent(string filename, int line)
        {
            var action = new KM_O2MdbgAction();

            action.line         = line;
            action.filename     = filename;
            action.o2MdbgAction = IM_O2MdbgActions.breakEvent;
            return(KO2MessageQueue.o2MessageQueue.sendMessage(action));
        }
コード例 #7
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbg_SetBreakPointOnFile(string fileName, int lineNumber)
 {
     var action = new KM_O2MdbgAction();
     action.line = lineNumber;
     action.filename = fileName;
     action.o2MdbgAction = IM_O2MdbgActions.setBreakpointOnFile;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }
コード例 #8
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbgDebugProcessRequest(string assemblyToDebug)
 {
     var action = new KM_O2MdbgAction();
     action.filename = assemblyToDebug;
     action.o2MdbgAction = IM_O2MdbgActions.debugProcessRequest;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }
コード例 #9
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbgDebugMethodInfoRequest(MethodInfo methodToDebug, string loadDllsFrom)
 {
     var action = new KM_O2MdbgAction();
     action.loadDllsFrom = loadDllsFrom;
     action.method = methodToDebug;
     action.o2MdbgAction = IM_O2MdbgActions.debugMethodInfoRequest;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }
コード例 #10
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbgCommandExecutionMessage(IM_O2MdbgActions _o2MdbgAction, string _lastCommandExecutionMessage)
 {
     var action = new KM_O2MdbgAction();
     action.lastCommandExecutionMessage = _lastCommandExecutionMessage;
     action.o2MdbgAction = _o2MdbgAction;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }
コード例 #11
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbgBreakEvent(string filename, int line)
 {
     var action = new KM_O2MdbgAction();
     action.line = line;
     action.filename = filename;
     action.o2MdbgAction = IM_O2MdbgActions.breakEvent;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }
コード例 #12
0
ファイル: O2Messages.cs プロジェクト: SergeTruth/OxyChart
 public static Thread raiseO2MDbgAction(IM_O2MdbgActions _o2MdbgAction)
 {
     var action = new KM_O2MdbgAction();
     action.o2MdbgAction = _o2MdbgAction;
     return KO2MessageQueue.o2MessageQueue.sendMessage(action);
 }