private void StartApiService(string offset = "0") { if (!Methods.CheckConnectivity()) { Toast.MakeText(this, GetString(Resource.String.Lbl_CheckYourInternetConnection), ToastLength.Short).Show(); } else { PollyController.RunRetryPolicyFunction(new List <Func <Task> > { () => MainRecyclerView.FetchSearchForPosts(offset, IdSearch, SearchText, TypeSearch) }); } }