Click or drag to resize

IJavaObjectInvoke(String) Method

Invokes an instance method on the underlying JVM object with no arguments.

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
Object Invoke(
	string methodName
)

Parameters

methodName  String
The name of the Java instance method to invoke.

Return Value

Object
The return value of the method as a boxed Object, or if the method returns void.
Exceptions
ExceptionCondition
MissingMethodException Thrown if no matching method is found on the underlying Java class.
See Also