Provides status of the Spider.
public struct CrawlStatus { public String CurrentUrl; public int CurrentItemSize; public int CurrentItemBytesDownloaded; public __int64 TotalBytesDownloaded; public int TotalItemsDownloaded; public bool IsCrawling; }
Public Structure CrawlStatus Public CurrentUrl As String Public CurrentItemSize As Integer Public CurrentItemBytesDownloaded As Integer Public TotalBytesDownloaded As __int64 Public TotalItemsDownloaded As Integer Public IsCrawling As bool End Structure
|
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. |
Use HttpDataSource.GetStatus() to get the status of the Spider.
|
Copyright (c) 1998-2012 dtSearch Corp. All rights reserved.
|