Ejemplo n.º 1
0
 public IndexData GetExistingIndexByNumber(int number)
 {
     if (!_isAlive)
     {
         return(new IndexData
         {
             DocNumber = -1,
             Words = new List <string>()
         });
     }
     UpdateLastUsedToken();
     return(_hoot.GetExistingIndex(number));
 }