  | IJavaObjectInvokeWithSignatureTReturn(String, String, Object) Method | 
            Invokes an instance member on this 
IJavaObject using 
methodName and search criteria based on 
signature Namespace: MASES.JCOBridge.C2JBridge.JVMInteropAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.4.250922-152ba6ff9edce5bce8e7bf5a86e1098f7e200363
SyntaxTReturn InvokeWithSignature<TReturn>(
	string methodName,
	string signature,
	params Object[] args
)
Function InvokeWithSignature(Of TReturn) ( 
	methodName As String,
	signature As String,
	ParamArray args As Object()
) As TReturn
Parameters
- methodName  String
 - The method name to invoke
 - signature  String
 - The method signature to be used
 - args  Object
 - The arguments to pass to the method
 
Type Parameters
- TReturn
 - The return type expected: IJavaObject, Enum, primitive types or array of primitives types
 
Return Value
TReturnThe return value of 
InvokeWithSignatureTReturn(String, String, Object)
See Also