Example #1
0
        static void n_SetAppName_Ljava_lang_String_(IntPtr jnienv, IntPtr native__this, IntPtr native_value)
        {
            global::Com.Bluecats.Sdk.BCAppInsights __this = global::Java.Lang.Object.GetObject <global::Com.Bluecats.Sdk.BCAppInsights> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
            string value = JNIEnv.GetString(native_value, JniHandleOwnership.DoNotTransfer);

            __this.AppName = value;
        }
        public unsafe void OnDidLoadAppInsights(global::Com.Bluecats.Sdk.BCAppInsights p0)
        {
            if (id_onDidLoadAppInsights_Lcom_bluecats_sdk_BCAppInsights_ == IntPtr.Zero)
            {
                id_onDidLoadAppInsights_Lcom_bluecats_sdk_BCAppInsights_ = JNIEnv.GetMethodID(class_ref, "onDidLoadAppInsights", "(Lcom/bluecats/sdk/BCAppInsights;)V");
            }
            JValue *__args = stackalloc JValue [1];

            __args [0] = new JValue(p0);
            JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_onDidLoadAppInsights_Lcom_bluecats_sdk_BCAppInsights_, __args);
        }
Example #3
0
 static IntPtr n_GetAppID(IntPtr jnienv, IntPtr native__this)
 {
     global::Com.Bluecats.Sdk.BCAppInsights __this = global::Java.Lang.Object.GetObject <global::Com.Bluecats.Sdk.BCAppInsights> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     return(JNIEnv.NewString(__this.AppID));
 }
 static void n_OnDidLoadAppInsights_Lcom_bluecats_sdk_BCAppInsights_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::Com.Bluecats.Sdk.IBCAppCallback __this = global::Java.Lang.Object.GetObject <global::Com.Bluecats.Sdk.IBCAppCallback> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Com.Bluecats.Sdk.BCAppInsights  p0     = global::Java.Lang.Object.GetObject <global::Com.Bluecats.Sdk.BCAppInsights> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.OnDidLoadAppInsights(p0);
 }