static void n_RequestLocationUpdates_Lcom_mapbox_android_core_location_LocationEngineRequest_Landroid_app_PendingIntent_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0, IntPtr native_p1)
 {
     global::Com.Mapbox.Android.Core.Location.ILocationEngine       __this = global::Java.Lang.Object.GetObject <global::Com.Mapbox.Android.Core.Location.ILocationEngine> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Mapbox.Android.Core.Location.LocationEngineRequest p0     = global::Java.Lang.Object.GetObject <global::Com.Mapbox.Android.Core.Location.LocationEngineRequest> (native_p0, JniHandleOwnership.DoNotTransfer);
     global::Android.App.PendingIntent p1 = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (native_p1, JniHandleOwnership.DoNotTransfer);
     __this.RequestLocationUpdates(p0, p1);
 }
        static IntPtr n_SetPendingIntent_Landroid_app_PendingIntent_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
        {
            global::Com.Liveperson.Infra.Handler.NotificationHandler __this = global::Java.Lang.Object.GetObject <global::Com.Liveperson.Infra.Handler.NotificationHandler> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            global::Android.App.PendingIntent p0 = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (native_p0, JniHandleOwnership.DoNotTransfer);
            IntPtr __ret = JNIEnv.ToLocalJniHandle(__this.SetPendingIntent(p0));

            return(__ret);
        }
 public static global::Android.App.PendingIntent A(global::Android.Content.Context p0)
 {
     if (id_a_Landroid_content_Context_ == IntPtr.Zero)
     {
         id_a_Landroid_content_Context_ = JNIEnv.GetStaticMethodID(class_ref, "a", "(Landroid/content/Context;)Landroid/app/PendingIntent;");
     }
     global::Android.App.PendingIntent __ret = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (JNIEnv.CallStaticObjectMethod(class_ref, id_a_Landroid_content_Context_, new JValue(p0)), JniHandleOwnership.TransferLocalRef);
     return(__ret);
 }
        public unsafe void RemoveLocationUpdates(global::Android.App.PendingIntent p0)
        {
            if (id_removeLocationUpdates_Landroid_app_PendingIntent_ == IntPtr.Zero)
            {
                id_removeLocationUpdates_Landroid_app_PendingIntent_ = JNIEnv.GetMethodID(class_ref, "removeLocationUpdates", "(Landroid/app/PendingIntent;)V");
            }
            JValue *__args = stackalloc JValue [1];

            __args [0] = new JValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
            JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_removeLocationUpdates_Landroid_app_PendingIntent_, __args);
        }
예제 #5
0
 public static unsafe void SetImageServicePendingIntent(global::Android.App.PendingIntent p0)
 {
     if (id_setImageServicePendingIntent_Landroid_app_PendingIntent_ == IntPtr.Zero)
     {
         id_setImageServicePendingIntent_Landroid_app_PendingIntent_ = JNIEnv.GetStaticMethodID(class_ref, "setImageServicePendingIntent", "(Landroid/app/PendingIntent;)V");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         JNIEnv.CallStaticVoidMethod(class_ref, id_setImageServicePendingIntent_Landroid_app_PendingIntent_, __args);
     } finally {
     }
 }
        public unsafe global::Android.App.PendingIntent CreatePendingIntent(string p0)
        {
            if (id_createPendingIntent_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_createPendingIntent_Ljava_lang_String_ = JNIEnv.GetMethodID(class_ref, "createPendingIntent", "(Ljava/lang/String;)Landroid/app/PendingIntent;");
            }
            IntPtr  native_p0 = JNIEnv.NewString(p0);
            JValue *__args    = stackalloc JValue [1];

            __args [0] = new JValue(native_p0);
            global::Android.App.PendingIntent __ret = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (JNIEnv.CallObjectMethod(((global::Java.Lang.Object) this).Handle, id_createPendingIntent_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
            JNIEnv.DeleteLocalRef(native_p0);
            return(__ret);
        }
        public virtual unsafe void SetPendingIntent(global::Android.App.PendingIntent p0)
        {
            if (id_setPendingIntent_Landroid_app_PendingIntent_ == IntPtr.Zero)
            {
                id_setPendingIntent_Landroid_app_PendingIntent_ = JNIEnv.GetMethodID(class_ref, "setPendingIntent", "(Landroid/app/PendingIntent;)V");
            }
            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(p0);

                if (((object)this).GetType() == ThresholdType)
                {
                    JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_setPendingIntent_Landroid_app_PendingIntent_, __args);
                }
                else
                {
                    JNIEnv.CallNonvirtualVoidMethod(((global::Java.Lang.Object) this).Handle, ThresholdClass, JNIEnv.GetMethodID(ThresholdClass, "setPendingIntent", "(Landroid/app/PendingIntent;)V"), __args);
                }
            } finally {
            }
        }
예제 #8
0
        public unsafe void AddFence(global::Com.Tencent.Map.Geolocation.TencentGeofence p0, global::Android.App.PendingIntent p1)
        {
            const string __id = "addFence.(Lcom/tencent/map/geolocation/TencentGeofence;Landroid/app/PendingIntent;)V";

            try {
                JniArgumentValue *__args = stackalloc JniArgumentValue [2];
                __args [0] = new JniArgumentValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
                __args [1] = new JniArgumentValue((p1 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p1).Handle);
                _members.InstanceMethods.InvokeNonvirtualVoidMethod(__id, this, __args);
            } finally {
            }
        }
예제 #9
0
 public void SendTextMessage(string @string, string string1, string string2, global::Android.App.PendingIntent pendingIntent, global::Android.App.PendingIntent pendingIntent1)                         /* MethodBuilder.Create */
 {
 }
예제 #10
0
 public void SendDataMessage(string @string, string string1, short int16, byte[] @byte, global::Android.App.PendingIntent pendingIntent, global::Android.App.PendingIntent pendingIntent1)                         /* MethodBuilder.Create */
 {
 }
 static void n_SetPendingIntent_Landroid_app_PendingIntent_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Applozic.Mobicomkit.Api.Notification.WearableNotificationWithVoice __this = global::Java.Lang.Object.GetObject <global::Com.Applozic.Mobicomkit.Api.Notification.WearableNotificationWithVoice> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Android.App.PendingIntent p0 = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.SetPendingIntent(p0);
 }
예제 #12
0
 public void SendDataMessage(string destinationAddress, string scAddress, short destinationPort, byte[] data, global::Android.App.PendingIntent sentIntent, global::Android.App.PendingIntent deliveryIntent)                         /* MethodBuilder.Create */
 {
 }
예제 #13
0
 public void SendTextMessage(string destinationAddress, string scAddress, string text, global::Android.App.PendingIntent sentIntent, global::Android.App.PendingIntent deliveryIntent)                         /* MethodBuilder.Create */
 {
 }
        public virtual unsafe global::Com.Liveperson.Infra.Handler.NotificationHandler SetPendingIntent(global::Android.App.PendingIntent p0)
        {
            if (id_setPendingIntent_Landroid_app_PendingIntent_ == IntPtr.Zero)
            {
                id_setPendingIntent_Landroid_app_PendingIntent_ = JNIEnv.GetMethodID(class_ref, "setPendingIntent", "(Landroid/app/PendingIntent;)Lcom/liveperson/infra/handler/NotificationHandler;");
            }
            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(p0);

                global::Com.Liveperson.Infra.Handler.NotificationHandler __ret;
                if (((object)this).GetType() == ThresholdType)
                {
                    __ret = global::Java.Lang.Object.GetObject <global::Com.Liveperson.Infra.Handler.NotificationHandler> (JNIEnv.CallObjectMethod(((global::Java.Lang.Object) this).Handle, id_setPendingIntent_Landroid_app_PendingIntent_, __args), JniHandleOwnership.TransferLocalRef);
                }
                else
                {
                    __ret = global::Java.Lang.Object.GetObject <global::Com.Liveperson.Infra.Handler.NotificationHandler> (JNIEnv.CallNonvirtualObjectMethod(((global::Java.Lang.Object) this).Handle, ThresholdClass, JNIEnv.GetMethodID(ThresholdClass, "setPendingIntent", "(Landroid/app/PendingIntent;)Lcom/liveperson/infra/handler/NotificationHandler;"), __args), JniHandleOwnership.TransferLocalRef);
                }
                return(__ret);
            } finally {
            }
        }
        public unsafe void RequestLocationUpdates(global::Com.Mapbox.Android.Core.Location.LocationEngineRequest p0, global::Android.App.PendingIntent p1)
        {
            if (id_requestLocationUpdates_Lcom_mapbox_android_core_location_LocationEngineRequest_Landroid_app_PendingIntent_ == IntPtr.Zero)
            {
                id_requestLocationUpdates_Lcom_mapbox_android_core_location_LocationEngineRequest_Landroid_app_PendingIntent_ = JNIEnv.GetMethodID(class_ref, "requestLocationUpdates", "(Lcom/mapbox/android/core/location/LocationEngineRequest;Landroid/app/PendingIntent;)V");
            }
            JValue *__args = stackalloc JValue [2];

            __args [0] = new JValue((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p0).Handle);
            __args [1] = new JValue((p1 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p1).Handle);
            JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_requestLocationUpdates_Lcom_mapbox_android_core_location_LocationEngineRequest_Landroid_app_PendingIntent_, __args);
        }
 static void n_RemoveLocationUpdates_Landroid_app_PendingIntent_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Mapbox.Android.Core.Location.ILocationEngine __this = global::Java.Lang.Object.GetObject <global::Com.Mapbox.Android.Core.Location.ILocationEngine> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Android.App.PendingIntent p0 = global::Java.Lang.Object.GetObject <global::Android.App.PendingIntent> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.RemoveLocationUpdates(p0);
 }