Exemple #1
0
 public bool MoveNext()
 {
     _staturl = new Structures.STATURL();
     _enumerator.Next(1, ref _staturl, out _index);
     if (_index == 0)
     {
         return(false);
     }
     return(true);
 }
Exemple #2
0
 public void GetUrlHistory(IList list)
 {
     while (true)
     {
         _staturl = new Structures.STATURL();
         _enumerator.Next(1, ref _staturl, out _index);
         if (_index == 0)
         {
             _enumerator.Reset();
             return;
         }
         list.Add(_staturl);
     }
 }