Exemple #1
0
 public DnModule TryGetModule(ICorDebugModule comModule)
 {
     Debugger.DebugVerifyThread();
     return(modules.TryGet(comModule));
 }
Exemple #2
0
 internal DnThread TryGetThread(ICorDebugThread comThread) => threads.TryGet(comThread);
Exemple #3
0
 internal DnAppDomain TryGetAppDomain(ICorDebugAppDomain comAppDomain) => appDomains.TryGet(comAppDomain);
Exemple #4
0
 /// <summary>
 /// Gets an Assembly or null
 /// </summary>
 /// <param name="comAssembly">Assembly</param>
 /// <returns></returns>
 public DnAssembly TryGetAssembly(ICorDebugAssembly comAssembly)
 {
     Debugger.DebugVerifyThread();
     return(assemblies.TryGet(comAssembly));
 }
Exemple #5
0
 internal DnThread TryGetThread(ICorDebugThread comThread)
 {
     return(threads.TryGet(comThread));
 }
Exemple #6
0
 internal DnAppDomain TryGetAppDomain(ICorDebugAppDomain comAppDomain)
 {
     return(appDomains.TryGet(comAppDomain));
 }