 | IJavaObjectInvoke(String, Object) Method |
Invokes an instance method on the underlying JVM object with 1 argument.
Namespace: MASES.JCOBridge.C2JBridge.JVMInteropAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
SyntaxObject Invoke(
string methodName,
Object arg0
)
Function Invoke (
methodName As String,
arg0 As Object
) As Object
Parameters
- methodName String
- The name of the Java instance method to invoke.
- arg0 Object
- The first 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
See Also