コード例 #1
0
        private void ServiceConnectionOnInAppBillingError(InAppBillingErrorType error, string message)
        {
            var message1 = string.Format("Store(ServiceConnectionOnInAppBillingError)/nerror={0}, message = {1}", error, message);

            GaService.TrackAppException(message1, false);
            ErrorOccur("Error of service connection: " + message);
        }
コード例 #2
0
ファイル: InAppPurchase.cs プロジェクト: LckDck/LiteHelper
        private void OnInAppBillingError(InAppBillingErrorType error, string message)
        {
            UnBind();

            if (_tcsConnection != null)
            {
                _tcsConnection.TrySetResult(false);
            }
        }
コード例 #3
0
        private async void ServiceConnection_OnInAppBillingError(InAppBillingErrorType error, string message)
        {
            Log.Info("Seekios", "OnInAppBillingError: " + message);
            if (_isDiplayingSmth)
            {
                return;
            }
            _isDiplayingSmth = true;
            await App.Locator.ReloadCredit.ShowMessage(
                Resources.GetString(Resource.String.packOnBillingUnavailable)
                , Resources.GetString(Resource.String.packOnErrorTitle));

            _isDiplayingSmth = false;
            if (!ServiceConnection.Connected)
            {
                Finish();
            }
        }
コード例 #4
0
 private void ServiceConnectionOnInAppBillingError(InAppBillingErrorType error, string message)
 {
     var message1 = string.Format("Store(ServiceConnectionOnInAppBillingError)/nerror={0}, message = {1}", error, message);
     GaService.TrackAppException(message1, false);
     ErrorOccur("Error of service connection: " + message);
 }
コード例 #5
0
 void OnInAppBillingError(InAppBillingErrorType error, string message)
 {
     DeviceDebugAndroid.LogToFileMethodStatic("appstore *** error *** " + error + " // message: " + message);
 }
 protected virtual void RaiseOnInAppBillingError(InAppBillingErrorType error, string message)
 {
     if (this.OnInAppBillingError != null)
     {
         this.OnInAppBillingError(error, message);
     }
 }
コード例 #7
0
 private static void ConnectionOnOnInAppBillingError(InAppBillingErrorType error, string message)
 {
     GaService.TrackAppException("Extensions", "ConnectionOnOnInAppBillingError", error.ToString(), message, false);
 }
コード例 #8
0
 private static void ConnectionOnOnInAppBillingError(InAppBillingErrorType error, string message)
 {
     GaService.TrackAppException("Extensions", "ConnectionOnOnInAppBillingError", error.ToString(), message, false);
 }