ACAT.Lib.Extension.AlphabetScannerCommon.refreshWordPredictionsAndSetCurrentWord C# (CSharp) Méthode

refreshWordPredictionsAndSetCurrentWord() private méthode

Fetch new set of words into the prediction list box
private refreshWordPredictionsAndSetCurrentWord ( ) : void
Résultat void
        private void refreshWordPredictionsAndSetCurrentWord()
        {
            // we try it twice in case there is an AgentContext exception
            // the first time around
            if (!tryRefreshWordPredictionsAndSetCurrentWord())
            {
                Log.Debug("AgentContextException.  Retrying refreshing word prediction");
                tryRefreshWordPredictionsAndSetCurrentWord();
            }
        }