Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


CallStringMethod

Calls a Java instance method defined by \<tt\>methodID\</tt\>, optionally passing an array of arguments (\<tt\>args\</tt\>) to the method.
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.AndroidJNIModule

CallStringMethod(IntPtr, IntPtr, jvalue[])

Calls a Java instance method defined by \<tt\>methodID\</tt\>, optionally passing an array of arguments (\<tt\>args\</tt\>) to the method.
public static string CallStringMethod(nint obj, nint methodID, jvalue[] args)

Parameters


methodID


args

jvalue[]

Returns

Type

Description

string

Remarks

This is a convenience function that calls CallObjectMethod() with the same parameters, but creates a managed string from the result.
Additional Resources: AndroidJNI.CallObjectMethod.

CallStringMethod(IntPtr, IntPtr, Span<jvalue>)

Calls a Java instance method defined by \<tt\>methodID\</tt\>, optionally passing an array of arguments (\<tt\>args\</tt\>) to the method.
public static string CallStringMethod(nint obj, nint methodID, Span<jvalue> args)

Parameters

Returns

Type

Description

string

Remarks

This is a convenience function that calls CallObjectMethod() with the same parameters, but creates a managed string from the result.
Additional Resources: AndroidJNI.CallObjectMethod.