CallStaticLongMethod() public static method

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

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