Exemplo n.º 1
0
 public ExceptionUnwindDebugCallbackEventArgs(ICorDebugAppDomain?pAppDomain, ICorDebugThread?pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags)
     : base(pAppDomain)
 {
     AppDomain = pAppDomain;
     Thread    = pThread;
     EventType = dwEventType;
     Flags     = dwFlags;
 }
Exemplo n.º 2
0
 public ExceptionUnwindDebugCallbackEventArgs(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags)
     : base(pAppDomain)
 {
     this.AppDomain = pAppDomain;
     this.Thread    = pThread;
     this.EventType = dwEventType;
     this.Flags     = dwFlags;
 }
Exemplo n.º 3
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 5
0
 void ICorDebugManagedCallback2.ExceptionUnwind(IntPtr pAppDomain, IntPtr pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags)
 {
     dbg.OnManagedCallbackFromAnyThread(() => new ExceptionUnwindDebugCallbackEventArgs(I <ICorDebugAppDomain>(pAppDomain), I <ICorDebugThread>(pThread), dwEventType, dwFlags));
 }
Exemplo n.º 6
0
 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));
 }
Exemplo n.º 7
0
		public ExceptionUnwindDebugCallbackEventArgs(ICorDebugAppDomain pAppDomain, ICorDebugThread pThread, CorDebugExceptionUnwindCallbackType dwEventType, CorDebugExceptionFlags dwFlags)
			: base(pAppDomain) {
			this.AppDomain = pAppDomain;
			this.Thread = pThread;
			this.EventType = dwEventType;
			this.Flags = dwFlags;
		}
Exemplo n.º 8
0
		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;
		}