 | JVMBridgeBaseIExecuteWithSignatureTNewClass, TReturn(String, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object) Method |
Invokes instance method methodName with 10 arguments, wrapping the result in TNewClass and returning it as TReturn.
Namespace: MASES.JCOBridge.C2JBridgeAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntaxpublic TReturn IExecuteWithSignature<TNewClass, TReturn>(
string methodName,
string signature,
Object arg0,
Object arg1,
Object arg2,
Object arg3,
Object arg4,
Object arg5,
Object arg6,
Object arg7,
Object arg8,
Object arg9
)
where TNewClass : IJVMBridgeBase, TReturn
Public Function IExecuteWithSignature(Of TNewClass As {IJVMBridgeBase, TReturn}, TReturn) (
methodName As String,
signature As String,
arg0 As Object,
arg1 As Object,
arg2 As Object,
arg3 As Object,
arg4 As Object,
arg5 As Object,
arg6 As Object,
arg7 As Object,
arg8 As Object,
arg9 As Object
) As TReturnParameters
- methodName String
- The name of the instance method to invoke.
- signature String
- The JNI signature used to resolve the overload.
- arg0 Object
- Argument 0 passed to the method.
- arg1 Object
- Argument 1 passed to the method.
- arg2 Object
- Argument 2 passed to the method.
- arg3 Object
- Argument 3 passed to the method.
- arg4 Object
- Argument 4 passed to the method.
- arg5 Object
- Argument 5 passed to the method.
- arg6 Object
- Argument 6 passed to the method.
- arg7 Object
- Argument 7 passed to the method.
- arg8 Object
- Argument 8 passed to the method.
- arg9 Object
- Argument 9 passed to the method.
Type Parameters
- TNewClass
- The concrete bridge class used to wrap the JVM result.
- TReturn
- The return type, which TNewClass must implement.
Return Value
TReturnThe method return value wrapped as
TReturn.
See Also