IGoWord.cs
上传用户:huiyue
上传日期:2022-04-08
资源大小:1429k
文件大小:1k
源码类别:

搜索引擎

开发平台:

ASP/ASPX

  1. using System;
  2. namespace Searcharoo.Common
  3. {
  4.     /// <summary>
  5.     /// IGoWord
  6.     /// </summary>
  7.     public interface IGoWord
  8.     {
  9.         /// <summary>
  10.         /// Returns true if the word is 'specially marked' for indexing,
  11.         /// bypassing any other Trimming, StopWord or Stemming processing.
  12.         /// </summary>
  13.         /// <remarks>
  14.         /// This method is used to force special strings (possibly including punctuation)
  15.         /// to be indexed and searched without other similar but meaningless cruft clogging
  16.         /// up the catalog, eg. C# html+time 
  17.         /// Note that Go Words CANNOT contain spaces, if they do they'll be recognised as 
  18.         /// two seperate words.
  19.         /// </remarks>
  20.         /// <param name="word">The word to check</param>
  21.         /// <returns>true if 'special', false if the word should be processed normally</returns>
  22.         bool IsGoWord(string word);
  23.     }
  24. }