Exemplo n.º 1
0
        public ICorDebugValue GetStaticFieldValue(uint fieldDef, Wrappers.CorDebug.ICorDebugFrame pFrame)
        {
            ICorDebugValue ppValue;

            Interop.CorDebug.ICorDebugValue out_ppValue;
            this.WrappedObject.GetStaticFieldValue(fieldDef, pFrame.WrappedObject, out out_ppValue);
            ppValue = ICorDebugValue.Wrap(out_ppValue);
            return(ppValue);
        }
Exemplo n.º 2
0
 public void InterceptCurrentException(Wrappers.CorDebug.ICorDebugFrame pFrame)
 {
     this.WrappedObject.InterceptCurrentException(pFrame.WrappedObject);
 }
 public override bool Equals(object o)
 {
     Wrappers.CorDebug.ICorDebugFrame casted = o as Wrappers.CorDebug.ICorDebugFrame;
     return((casted != null) && (casted.WrappedObject == wrappedObject));
 }