Click or drag to resize

IJavaObjectInvokeWithSignature(String, String, Object, Object, Object, Object) Method

Invokes an instance method on the underlying JVM object using an explicit JNI signature and 4 arguments.

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
Object InvokeWithSignature(
	string methodName,
	string signature,
	Object arg0,
	Object arg1,
	Object arg2,
	Object arg3
)

Parameters

methodName  String
The name of the Java instance method to invoke.
signature  String
The JNI method descriptor string that uniquely identifies the target method.
arg0  Object
The first argument to pass to the method.
arg1  Object
The second argument to pass to the method.
arg2  Object
The third argument to pass to the method.
arg3  Object
The fourth argument to pass to the method.

Return Value

Object
The return value of the method as a boxed Object, or if the method returns void.
Exceptions
ExceptionCondition
MissingMethodException Thrown if the method identified by methodName and signature is not found on the underlying Java class.
See Also