所以我很困惑,为什么我WebClient
没有访问它的DownloadStringCompleted
. 在阅读了可能存在的问题之后WebClient
,disposed
它才能完成下载。或者exceptions
在此期间没有被捕获,DownloadData
或者根本Uri
无法访问。
我已经检查了所有这些问题,但我WebClient
还没有访问过它的DownloadStringCompleted
.
PMID WebClient 类
/// <summary>
/// Construct a new curl
/// </summary>
/// <param name="pmid">pmid value</param>
public PMIDCurl(int pmid)
{
this.pmid = pmid;
StringBuilder pmid_url_string = new StringBuilder();
pmid_url_string.Append("http://www.ncbi.nlm.nih.gov/pubmed/").Append(pmid.ToString()).Append("?report=xml");
this.pmid_url = new Uri(pmid_url_string.ToString());
}
/// <summary>
/// Curl data from the PMID
/// </summary>
public void CurlPMID()
{
WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(HttpsCompleted);
client.DownloadData(this.pmid_url);
}
/// <summary>
/// Information to store in the class after the curl
/// </summary>
public string AbstractTitle { get; set; }
public string AbstractText { get; set; }
/// <summary>
/// Retrieve the data from an xml file about a PMID
/// </summary>
/// <param name="sender">System Generated</param>
/// <param name="e">System Generated</param>
private void HttpsCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
{
PMIDCrawler pmc = new PMIDCrawler(e.Result, "/pre/PubmedArticle/MedlineCitation/Article");
//iterate over each node in the file
foreach (XmlNode xmlNode in pmc.crawl)
{
this.AbstractTitle = xmlNode["ArticleTitle"].InnerText;
this.AbstractText = xmlNode["Abstract"]["AbstractText"].InnerText;
}
}
} //close httpsCompleted
PMID NodeList 构造函数类
/// <summary>
/// List initialized by crawer
/// </summary>
public XmlNodeList crawl { get; set; }
/// <summary>
/// Constructor for the HTML to XML converter
/// </summary>
/// <param name="nHtml"></param>
/// <param name="nodeList"></param>
public PMIDCrawler(string nHtml, string nodeList)
{
//parse it from e
string html = HttpUtility.HtmlDecode(nHtml);
XDocument htmlDoc = XDocument.Parse(html, LoadOptions.None);
//convert the xdocument to an xmldocument
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.Load(htmlDoc.CreateReader());
//load the xmlDocument into a nodelist
XmlElement xmlRoot = xmlDoc.DocumentElement;
this.crawl = xmlRoot.SelectNodes(nodeList);
}
关于为什么DonwloadStringCompleted
从未达到的任何想法?