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

搜索引擎

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Searcharoo.Common
  5. {
  6.     /// <summary>
  7.     /// Document instance when the Uri is to be ignored (ie not indexable).
  8.     /// </summary>
  9.     /// <remarks>
  10.     /// Created this in case we still want to use the Document class, say 
  11.     /// to get the filesize for reporting or something...
  12.     /// </remarks>
  13.     public class IgnoreDocument : Document
  14.     {
  15.         #region Constructor requires Uri
  16.         public IgnoreDocument(Uri location) : base(location)
  17.         {
  18.             //_Uri = location;
  19.         }
  20.         #endregion
  21.         public override string WordsOnly
  22.         {
  23.             get { return string.Empty; }
  24.         }
  25.         public override void Parse ()
  26.         {
  27.             // no parsing, by default the content is used "as is"
  28.         }
  29.         public override bool GetResponse (System.Net.HttpWebResponse webresponse)
  30.         {
  31.             return false;
  32.         }
  33.     }
  34. }