Esempio n. 1
0
 public static ICorDebugAssembly Wrap(Debugger.Interop.CorDebug.ICorDebugAssembly objectToWrap)
 {
     if ((objectToWrap != null))
     {
         return(new ICorDebugAssembly(objectToWrap));
     }
     else
     {
         return(null);
     }
 }
 public void ResolveAssembly(uint tkAssemblyRef, ref ICorDebugAssembly ppAssembly)
 {
     Debugger.Interop.CorDebug.ICorDebugAssembly ref_ppAssembly = ppAssembly.WrappedObject;
     this.WrappedObject.ResolveAssembly(tkAssemblyRef, ref ref_ppAssembly);
     ppAssembly = ICorDebugAssembly.Wrap(ref_ppAssembly);
 }
Esempio n. 3
0
 public ICorDebugAssembly(Debugger.Interop.CorDebug.ICorDebugAssembly wrappedObject)
 {
     this.wrappedObject = wrappedObject;
     ResourceManager.TrackCOMObject(wrappedObject, typeof(ICorDebugAssembly));
 }