public ExceptionUnwindDebugCallbackEventArgs(ICorDebugAppDomain?pAppDomain, ICorDebugThread?pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags) : base(pAppDomain) { AppDomain = pAppDomain; Thread = pThread; EventType = dwEventType; Flags = dwFlags; }
public ExceptionUnwindDebugCallbackEventArgs(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags) : base(pAppDomain) { this.AppDomain = pAppDomain; this.Thread = pThread; this.EventType = dwEventType; this.Flags = dwFlags; }
public Exception2DebugCallbackEventArgs(ICorDebugAppDomain?pAppDomain, ICorDebugThread?pThread, ICorDebugFrame?pFrame, uint nOffset, CorDebugExceptionCallbackType dwEventType, CorDebugExceptionFlags dwFlags) : base(pAppDomain) { AppDomain = pAppDomain; Thread = pThread; Frame = pFrame; Offset = nOffset; EventType = dwEventType; Flags = dwFlags; }
public Exception2DebugCallbackEventArgs(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, ICorDebugFrame pFrame, uint nOffset, CorDebugExceptionCallbackType dwEventType, CorDebugExceptionFlags dwFlags) : base(pAppDomain) { this.AppDomain = pAppDomain; this.Thread = pThread; this.Frame = pFrame; this.Offset = nOffset; this.EventType = dwEventType; this.Flags = dwFlags; }
void ICorDebugManagedCallback2.ExceptionUnwind(IntPtr pAppDomain, IntPtr pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags) { dbg.OnManagedCallbackFromAnyThread(() => new ExceptionUnwindDebugCallbackEventArgs(I <ICorDebugAppDomain>(pAppDomain), I <ICorDebugThread>(pThread), dwEventType, dwFlags)); }
void ICorDebugManagedCallback2.Exception(IntPtr pAppDomain, IntPtr pThread, IntPtr pFrame, uint nOffset, CorDebugExceptionCallbackType dwEventType, CorDebugExceptionFlags dwFlags) { dbg.OnManagedCallbackFromAnyThread(() => new Exception2DebugCallbackEventArgs(I <ICorDebugAppDomain>(pAppDomain), I <ICorDebugThread>(pThread), I <ICorDebugFrame>(pFrame), nOffset, dwEventType, dwFlags)); }