protected override unsafe int OnUpdateModuleSymbols(
     CorDebugAppDomain pAppDomain,
     CorDebugModule pModule,
     IntPtr pSymbolStream)
 {
     UpdateModuleSymbols?.Invoke(this, pAppDomain, pModule, pSymbolStream);
     return(Continue());
 }
Esempio n. 2
0
 protected abstract int OnUpdateModuleSymbols(
     CorDebugAppDomain pAppDomain,
     CorDebugModule pModule,
     IntPtr pSymbolStream);
Esempio n. 3
0
 protected abstract int OnUnloadModule(CorDebugAppDomain pAppDomain, CorDebugModule pModule);
 protected override unsafe int OnUnloadModule(CorDebugAppDomain pAppDomain, CorDebugModule pModule)
 {
     UnloadModule?.Invoke(this, pAppDomain, pModule);
     return(Continue());
 }