示例#1
0
        public virtual CORINFO_JUST_MY_CODE_HANDLE_* getJustMyCodeHandle_wrapper(IntPtr _this, out IntPtr exception, CORINFO_METHOD_STRUCT_* method, ref CORINFO_JUST_MY_CODE_HANDLE_** ppIndirection)
        {
            exception = IntPtr.Zero;
            try
            {
                return getJustMyCodeHandle(method, ref ppIndirection);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (CORINFO_JUST_MY_CODE_HANDLE_*)0;
        }
示例#2
0
 private CORINFO_JUST_MY_CODE_HANDLE_* getJustMyCodeHandle(IntPtr _this, CORINFO_METHOD_STRUCT_* method, ref CORINFO_JUST_MY_CODE_HANDLE_** ppIndirection)
 { throw new NotImplementedException("getJustMyCodeHandle"); }
示例#3
0
 static CORINFO_JUST_MY_CODE_HANDLE_* _getJustMyCodeHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, ref CORINFO_JUST_MY_CODE_HANDLE_** ppIndirection)
 {
     var _this = GetThis(thisHandle);
     try
     {
         return _this.getJustMyCodeHandle(method, ref ppIndirection);
     }
     catch (Exception ex)
     {
         *ppException = _this.AllocException(ex);
         return default(CORINFO_JUST_MY_CODE_HANDLE_*);
     }
 }