Browse Source

properly implement OnAppDomainCreated, OnAppDomainDestroyed

newNRILSpyDebugger
Siegfried Pammer 12 years ago
parent
commit
996060d7c0
  1. 6
      src/AddIns/Debugger/Debugger.Core/Process.cs

6
src/AddIns/Debugger/Debugger.Core/Process.cs

@ -613,12 +613,14 @@ namespace Debugger @@ -613,12 +613,14 @@ namespace Debugger
internal void OnAppDomainCreated(AppDomain appDomain)
{
if (AppDomainCreated != null)
AppDomainCreated(this, new AppDomainEventArgs(appDomain));
}
internal void OnAppDomainDestroyed(AppDomain appDomain)
{
if (AppDomainDestroyed != null)
AppDomainDestroyed(this, new AppDomainEventArgs(appDomain));
}
}
}

Loading…
Cancel
Save