/// <summary>
 /// Initializes a new instance of the <see cref="IndexInfoSummary"/> class.
 /// </summary>
 /// <param name="features">The features to enable when building the summary data.</param>
 public IndexInfoSummary(IndexInfoSummaryFeature features)
 {
     this.features      = features;
     this.timeSpread    = new List <KeyValuePair <DateTime, string> >();
     this.mostRecent    = new Dictionary <string, IndexInfo>();
     this.totalReads    = 0L;
     this.totalSearches = 0L;
     this.totalWrites   = 0L;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="IndexInfoSummary"/> class.
 /// </summary>
 /// <param name="features">The features to enable when building the summary data.</param>
 public IndexInfoSummary(IndexInfoSummaryFeature features)
 {
     this.features = features;
     this.timeSpread = new List<KeyValuePair<DateTime, string>>();
     this.mostRecent = new Dictionary<string, IndexInfo>();
     this.totalReads = 0L;
     this.totalSearches = 0L;
     this.totalWrites = 0L;
 }