Definition at line 48 of file RuntimeJavaMethod.cs.
◆ DoLinkMethod()
| virtual void IKVM.Runtime.RuntimeJavaMethod.DoLinkMethod |
( |
| ) |
|
|
protectedvirtual |
◆ InvokeAndUnwrapException()
| static object IKVM.Runtime.RuntimeJavaMethod.InvokeAndUnwrapException |
( |
MethodBase | mb, |
|
|
object | obj, |
|
|
object[] | args ) |
|
staticprotected |
Dynamically invokes the method and potentially unwraps any exceptions.
- Parameters
-
- Returns
Definition at line 537 of file RuntimeJavaMethod.cs.
538 {
539#if FIRST_PASS
540 throw new NotImplementedException();
541#else
542 try
543 {
544 return mb.Invoke(obj, args);
545 }
546 catch (TargetInvocationException e)
547 {
548 throw ikvm.runtime.Util.mapException(e.InnerException);
549 }
550#endif
551 }
The documentation for this class was generated from the following file: