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

搜索引擎

开发平台:

ASP/ASPX

  1. using System.Reflection;
  2. using System.Runtime.CompilerServices;
  3. using System.Runtime.InteropServices;
  4. [assembly: AssemblyTitle("Searcharoo.Common")]
  5. [assembly: AssemblyDescription("Searcharoo4 core code")]
  6. [assembly: AssemblyConfiguration("")]
  7. [assembly: AssemblyCompany("ConceptDevelopment.net")]
  8. [assembly: AssemblyProduct("Searcharoo.Common")]
  9. [assembly: AssemblyCopyright("Copyright © 2007")]
  10. [assembly: AssemblyTrademark("")]
  11. [assembly: AssemblyCulture("")]
  12. [assembly: System.CLSCompliant(true)]
  13. [assembly: ComVisible(false)]
  14. [assembly: Guid("1ef18d11-774f-4632-b009-0d6e2b0c1ada")]
  15. [assembly: AssemblyVersion("4.0.0.0")]
  16. [assembly: AssemblyFileVersion("4.0.0.0")]
  17. /*
  18. This project contains:
  19. Preferences contains dereferences for the web.config settings
  20. CatalogBinder allow the Catalog to be deserialized
  21. Catalog contains Hashtable of Words 
  22. Word instance of a Word, with a Hashtable of File references
  23. File instance of a File, with URL and other attributes
  24. ResultFile instance of a File with search ranking (inherits File) used for results only
  25. SpiderProgressEventHandler used to send crawl progress messages
  26. ProgressEventArgs used to send crawl progress messages
  27. Spider contains all the intelligence to crawl links, download, parse and index pages
  28. IGoWord Go words interface + implementation
  29. IStopper Stop words interface + implementation
  30. IStemming Stemming interface + implementation
  31. */
  32. #region Url references
  33. /*
  34. http://www.dotnetbips.com/displayarticle.aspx?id=43f
  35. http://www.microbion.co.uk/developers/csharp/dirlist.htm
  36. Stripping HTML
  37. http://www.4guysfromrolla.com/webtech/042501-1.shtml
  38. Opening a file from ASP.NET
  39. http://aspnet.4guysfromrolla.com/articles/051802-1.aspx
  40. Practical parsing in Regular Expressions
  41. http://weblogs.asp.net/rosherove/articles/6946.aspx
  42. */
  43. #endregion