Example #1
0
 public virtual void setMethodAttribs_wrapper(IntPtr _this, out IntPtr exception, CORINFO_METHOD_STRUCT_* ftn, CorInfoMethodRuntimeFlags attribs)
 {
     exception = IntPtr.Zero;
     try
     {
         setMethodAttribs(ftn, attribs);
         return;
     }
     catch (Exception ex)
     {
         exception = AllocException(ex);
     }
 }
Example #2
0
 private void setMethodAttribs(IntPtr _this, CORINFO_METHOD_STRUCT_* ftn, CorInfoMethodRuntimeFlags attribs)
 {
     // TODO: Inlining
 }
Example #3
0
 static void _setMethodAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CorInfoMethodRuntimeFlags attribs)
 {
     var _this = GetThis(thisHandle);
     try
     {
         _this.setMethodAttribs(ftn, attribs);
     }
     catch (Exception ex)
     {
         *ppException = _this.AllocException(ex);
     }
 }