protected override unsafe int OnUpdateModuleSymbols(
     CorDebugAppDomain pAppDomain,
     CorDebugModule pModule,
     IntPtr pSymbolStream)
 {
     UpdateModuleSymbols?.Invoke(this, pAppDomain, pModule, pSymbolStream);
     return(Continue());
 }
示例#2
0
 protected abstract int OnUpdateModuleSymbols(
     CorDebugAppDomain pAppDomain,
     CorDebugModule pModule,
     IntPtr pSymbolStream);
示例#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());
 }