Ejemplo n.º 1
0
 /// <summary>
 /// Opens a tree scanner for this archive file
 /// </summary>
 /// <returns></returns>
 public override SortedTreeScannerBase <TKey, TValue> GetRange()
 {
     if (m_disposed)
     {
         throw new ObjectDisposedException(GetType().FullName);
     }
     return(m_tree.CreateTreeScanner());
 }
 /// <summary>
 /// Gets a reader that can be used to parse an archive file.
 /// </summary>
 /// <returns></returns>
 public SortedTreeScannerBase <TKey, TValue> GetTreeScanner()
 {
     return(m_tree.CreateTreeScanner());
 }