ClearIndexCache() public method

Resets the index cache with the information from the supplied mostRecentParser
public ClearIndexCache ( IndexParser mostRecentParser ) : void
mostRecentParser IndexParser
return void
 public void ClearIndexCache(IndexParser mostRecentParser)
 {
     if (IsDisposed || m_ioSessions.IsDisposed)
     {
         throw new ObjectDisposedException(GetType().FullName);
     }
     m_parser.ClearIndexCache(mostRecentParser);
 }