CallLongMethod() public static method

public static CallLongMethod ( IntPtr obj, IntPtr methodID, jvalue args ) : long
obj System.IntPtr
methodID System.IntPtr
args jvalue
return long
コード例 #1
0
 public static long CallLongMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
 {
     try
     {
         return(AndroidJNI.CallLongMethod(obj, methodID, args));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
コード例 #2
0
ファイル: AndroidJNISafe.cs プロジェクト: randomize/VimConfig
        public static long CallLongMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
        {
            long num;

            try
            {
                num = AndroidJNI.CallLongMethod(obj, methodID, args);
            }
            finally
            {
                CheckException();
            }
            return(num);
        }
コード例 #3
0
 public static Int64 CallLongMethod(IntPtr obj, IntPtr methodID, Span <jvalue> args)
 {
     try { return(AndroidJNI.CallLongMethod(obj, methodID, args)); } finally { CheckException(); }
 }