 | IJavaObjectInvokeTReturn(String) Method |
Invokes an instance method on the underlying JVM object with no arguments
and casts the result to TReturn.
Namespace: MASES.JCOBridge.C2JBridge.JVMInteropAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
SyntaxTReturn Invoke<TReturn>(
string methodName
)
Function Invoke(Of TReturn) (
methodName As String
) As TReturn
Parameters
- methodName String
- The name of the Java instance method to invoke.
Type Parameters
- TReturn
-
The expected return type. Supported types: IJavaObject or any
derived interface/class, .NET primitive types (Int32, Int64,
Boolean, etc.), Enum, and arrays of primitive types.
Return Value
TReturnThe return value of the method cast to
TReturn.
Exceptions
See Also