Click or drag to resize

JVMBridgeBaseIExecuteStreamTArrayType(String, Object) Method

Executes the method identified by methodName and returns the result as a JCOBridgeStreamT backed by the JVM primitive array returned by the method.

Namespace: MASES.JCOBridge.C2JBridge
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
public JCOBridgeStream<TArrayType> IExecuteStream<TArrayType>(
	string methodName,
	params Object[] args
)
where TArrayType : struct, new()

Parameters

methodName  String
The name of the method to execute.
args  Object
The arguments to pass to the method.

Type Parameters

TArrayType
The .NET primitive type corresponding to the JVM array element type. Supported types are: bool, byte, short, int, long, float, double and char. Must match the actual JVM array element type; a mismatch throws InvalidOperationException at runtime.

Return Value

JCOBridgeStreamTArrayType
A JCOBridgeStreamT that provides stream access to the JVM array data, or if the method returns or an empty JVM array reference. Dispose the returned stream as soon as it is no longer needed.
See Also