-1

这里的想法是允许调用者AfterHTMLPieceHandler为循环的每个循环实现,我不知道它是否完全正确或者它应该是一个事件 insted 或委托。老实说,我不知道有什么区别,但这是另一个问题。

//? Should it be static?
public static class PageScan
{
    public delegate string AfterHTMLPieceHandler();

    public static string GetHTML(string url)
    {
        HttpWebRequest wRequest = (HttpWebRequest)WebRequest.Create(url);
        wRequest.Method = "GET";
        HttpWebResponse wResponse = (HttpWebResponse)wRequest.GetResponse();
        StreamReader sReader = new StreamReader(wResponse.GetResponseStream());
        string html = sReader.ReadToEnd();
        sReader.Close();
        wResponse.Close();
        sReader.Dispose();
        return html;
    }

    public static void GetPiecesOfHtml(string html, string constantHtml)
    {
        while (html.IndexOf("http://portfoliopad.com/images/") > -1)
        {
            // it will retrieve a piece of html given the constantHtml and remove from html in order to break the loop in the end
            //How Do I hit the event for each time one cycle of the loop ends?
        }
    }
}
4

1 回答 1

0

这是使用委托的一个很好的参考:了解委托。请注意示例主要部分中的委托实例,以及它如何与委托所指向的方法相关联。我希望这有帮助。

于 2013-03-24T00:12:44.277 回答