コード例 #1
0
 private bool CheckIfInternetConnectivityIsOn()
 {
     if (_connectionHelper != null)
     {
         if (_connectionHelper.CheckForInternetConnection())
         {
             return(true);
         }
         else
         {
             shortToastMessage.ShowError(Consts.InternetConnectionError);
         }
     }
     return(false);
 }