Exemple #1
0
 /// <summary>
 /// Subclasses can override to set the search results object to have
 /// the correct number of buckets for a different strategy.
 /// Baseclass defaults to two buckets.
 /// </summary>
 protected virtual void SetupSearchResults()
 {
     SearchResults = new SemDomSearchResults(4);
 }
		/// <summary>
		/// Subclasses can override to set the search results object to have
		/// the correct number of buckets for a different strategy.
		/// This strategy needs three buckets.
		/// </summary>
		protected override void SetupSearchResults()
		{
			SearchResults = new SemDomSearchResults(5);
		}
 /// <summary>
 /// Subclasses can override to set the search results object to have
 /// the correct number of buckets for a different strategy.
 /// This strategy needs three buckets.
 /// </summary>
 protected override void SetupSearchResults()
 {
     SearchResults = new SemDomSearchResults(5);
 }
		/// <summary>
		/// Subclasses can override to set the search results object to have
		/// the correct number of buckets for a different strategy.
		/// Baseclass defaults to two buckets.
		/// </summary>
		protected virtual void SetupSearchResults()
		{
			SearchResults = new SemDomSearchResults(4);
		}