void OnGetAllWordsCompleted(object sender, GetAllWordsCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         foreach (Word word in e.Result)
         {
             if (!string.IsNullOrEmpty(word.@string))
             {
                 this.AddWordInternal(word.@string);
             }
         }
     }
 }
 void OnGetAllWordsCompleted(object sender, GetAllWordsCompletedEventArgs e)
 {
     if (e.Error == null)
     {
         foreach (Word word in e.Result)
         {
             if (!string.IsNullOrEmpty(word.@string))
             {
                 this.AddWordInternal(word.@string);
             }
         }
     }
 }