Ejemplo n.º 1
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);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Resets the enumerator interface so that it begins enumerating at the beginning of the history. 
 /// </summary>
 public void Reset()
 {
     enumrator.Reset();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Resets the enumerator interface so that it begins enumerating at the beginning of the history.
 /// </summary>
 public void Reset()
 {
     _enumerator.Reset();
 }