コード例 #1
0
ファイル: EngineCallback.cs プロジェクト: aonorin/MIEngine
        // Exception events are sent when an exception occurs in the debuggee that the debugger was not expecting.
        public void OnException(DebuggedThread thread, string name, string description, uint code, Guid?exceptionCategory = null, ExceptionBreakpointState state = ExceptionBreakpointState.None)
        {
            AD7ExceptionEvent eventObject = new AD7ExceptionEvent(name, description, code, exceptionCategory, state);

            AD7Thread ad7Thread = (AD7Thread)thread.Client;

            Send(eventObject, AD7ExceptionEvent.IID, ad7Thread);
        }
コード例 #2
0
ファイル: EngineCallback.cs プロジェクト: kelltrick/MIEngine
        // Exception events are sent when an exception occurs in the debuggee that the debugger was not expecting.
        public void OnException(DebuggedThread thread, string name, string description, uint code)
        {
            AD7ExceptionEvent eventObject = new AD7ExceptionEvent(name, description, code);

            AD7Thread ad7Thread = (AD7Thread)thread.Client;

            Send(eventObject, AD7ExceptionEvent.IID, ad7Thread);
        }
コード例 #3
0
ファイル: EngineCallback.cs プロジェクト: wesrupert/MIEngine
        // Exception events are sent when an exception occurs in the debuggee that the debugger was not expecting.
        public void OnException(DebuggedThread thread, string name, string description, uint code, Guid? exceptionCategory = null, ExceptionBreakpointState state = ExceptionBreakpointState.None)
        {
            AD7ExceptionEvent eventObject = new AD7ExceptionEvent(name, description, code, exceptionCategory, state);

            AD7Thread ad7Thread = (AD7Thread)thread.Client;
            Send(eventObject, AD7ExceptionEvent.IID, ad7Thread);
        }
コード例 #4
0
ファイル: EngineCallback.cs プロジェクト: robindegen/MIEngine
        // Exception events are sent when an exception occurs in the debuggee that the debugger was not expecting.
        public void OnException(DebuggedThread thread, string name, string description, uint code)
        {
            AD7ExceptionEvent eventObject = new AD7ExceptionEvent(name, description, code);

            AD7Thread ad7Thread = (AD7Thread)thread.Client;
            Send(eventObject, AD7ExceptionEvent.IID, ad7Thread);
        }