The SpiderReportable interface defines how the spider reports
its findings to an outside class.
| C# | Visual Basic | Visual C++ |
public interface ISpiderReportable
Public Interface ISpiderReportable
public interface class ISpiderReportable
| All Members | Methods | ||||
| Icon | Member | Description |
|---|---|---|
| BeginHost(String) |
This function is called when the spider is ready to
process a new host.
| |
| Init(Spider) |
Called when the spider is starting up. This method
provides the SpiderReportable class with the spider
object.
| |
| SpiderFoundURL(Uri, Uri, Spider..::.URLType) |
Called when the spider encounters a URL.
| |
| SpiderProcessURL(Uri, Stream) |
Called when the spider is about to process a NON-HTML
URL.
| |
| SpiderProcessURL(Uri, SpiderParseHTML) |
Called when the spider is ready to process an HTML
URL.
| |
| SpiderURLError(Uri) |
Called when the spider tries to process a URL but gets
an error.
|