网页解析器接口定义
public interface IParser
{
#region Events
event ActivatedEventHandler Activated;
event DeActivatedEventHandler DeActivated;
#endregion

#region Methods
void Activate();
void DeActivate();
void FillDataTable(string xmlstr, params string[] args);
void GetTorrentsList(string source, string uri, CancellationToken t);
void Initalize(Form OwnerForm, params object[] args);
DynamicObjectData GetObjectData(DataRow row, HttpRequestCacheLevel cache);
string ParseURI(ref Navigation.ParseOptions options);
#endregion

#region Properties
bool CanPost { get; set; }
bool Initalized { get; set; }
bool LoginRequired { get; set; }
CookieContainer Cookie {
get; set; }
ParserConfig Config {
get; set; }
ParserURIs Refs {
get; set; }
ParserData Data {
get; set; }
Image FavIcon {
get; set; }
string CookieFile { get; }
string Host { get; set; }
string Name { get; set; }
string ThumbnailDirectory { get; }
#endregion
}

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2021-06-18
  • 2021-06-13
  • 2021-04-25
  • 2021-04-08
  • 2021-08-15
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-03
  • 2022-02-27
  • 2021-06-25
相关资源
相似解决方案