Provides status of the Spider.
C#
public struct CrawlStatus {
public String CurrentUrl;
public int CurrentItemSize;
public int CurrentItemBytesDownloaded;
public __int64 TotalBytesDownloaded;
public int TotalItemsDownloaded;
public bool IsCrawling;
}
Members
|
Members |
Description |
|---|---|
|
CurrentUrl |
URL of the item being downloaded. |
|
CurrentItemSize |
Size of the item being downloaded. |
|
CurrentItemBytesDownloaded |
Number of bytes downloaded so far from the current item. |
|
TotalBytesDownloaded |
Total bytes downloaded so far. |
|
TotalItemsDownloaded |
Total number of items downloaded so far. |
|
IsCrawling |
If true, the Spider is still downloading data. |
Remarks
Use HttpDataSource.GetStatus() to get the status of the Spider.
See Also