UnregisterNatives() public méthode

public UnregisterNatives ( MonoJavaBridge.JniHandle clazz ) : JNIResult
clazz MonoJavaBridge.JniHandle
Résultat JNIResult
 public static unsafe void Unregister(JniHandle clazz, JNIEnv env)
 {
     JNIResult res = env.UnregisterNatives(clazz);
     if (res != JNIResult.JNI_OK)
     {
         throw new JNIException("Can't unbind native methods to class.");
     }
 }
Exemple #2
0
        public static unsafe void Unregister(JniHandle clazz, JNIEnv env)
        {
            JNIResult res = env.UnregisterNatives(clazz);

            if (res != JNIResult.JNI_OK)
            {
                throw new JNIException("Can't unbind native methods to class.");
            }
        }