Ejemplo n.º 1
0
 public DebuggerErrorDebugCallbackEventArgs(ICorDebugProcess?pProcess, int errorHR, uint errorCode)
     : base(pProcess)
 {
     Process   = pProcess;
     HError    = errorHR;
     ErrorCode = errorCode;
 }
Ejemplo n.º 2
0
 public DestroyConnectionDebugCallbackEventArgs(ICorDebugProcess?pProcess, uint dwConnectionId)
     : base(pProcess, dwConnectionId)
 {
 }
Ejemplo n.º 3
0
 public CreateConnectionDebugCallbackEventArgs(ICorDebugProcess?pProcess, uint dwConnectionId, string pConnName)
     : base(pProcess, dwConnectionId) => Name = pConnName;
Ejemplo n.º 4
0
 protected ConnectionDebugCallbackEventArgs(ICorDebugProcess?pProcess, uint dwConnectionId)
     : base(pProcess)
 {
     Process = pProcess;
     Id      = dwConnectionId;
 }
Ejemplo n.º 5
0
 public ControlCTrapDebugCallbackEventArgs(ICorDebugProcess?pProcess)
     : base(pProcess) => Process = pProcess;
Ejemplo n.º 6
0
 public ExitAppDomainDebugCallbackEventArgs(ICorDebugProcess?pProcess, ICorDebugAppDomain?pAppDomain)
     : base(pProcess, pAppDomain)
 {
 }
Ejemplo n.º 7
0
 protected AppDomainDebugCallbackEventArgs(ICorDebugProcess?pProcess, ICorDebugAppDomain?pAppDomain)
     : base(pProcess)
 {
     Process   = pProcess;
     AppDomain = pAppDomain;
 }
Ejemplo n.º 8
0
 public ExitProcessDebugCallbackEventArgs(ICorDebugProcess?pProcess)
     : base(pProcess)
 {
 }
Ejemplo n.º 9
0
 public CreateProcessDebugCallbackEventArgs(ICorDebugProcess?pProcess)
     : base(pProcess)
 {
 }
Ejemplo n.º 10
0
 protected ProcessDebugCallbackEventArgs(ICorDebugProcess?pProcess)
     : base(pProcess) => Process = pProcess;