iwebpageprocessor.cs

来自「一系列实验参考资料,希望对大家有点参考价值.是用JAVA编写的」· CS 代码 · 共 17 行

CS
17
字号
using System;

namespace Mf.Service.WebSpider
{
	/// <summary>
	/// Summary description for IWebPageProcessor.
	/// </summary>
   public interface IWebPageProcessor
   {
      bool Process( WebPageState state );

      WebPageContentDelegate ContentHandler { get; set; }
   }

   public delegate void WebPageContentDelegate( WebPageState state );
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?