0

これはクラスです:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using HtmlAgilityPack;
using System.Net;

namespace GatherLinks
{
    /// <summary>
    /// A result encapsulating the Url and the HtmlDocument
    /// </summary>
    class WebPage
    {
        public Uri Url { get; set; }

        /// <summary>
        /// Get every WebPage.Internal on a web site (or part of a web site) visiting all internal links just once
        /// plus every external page (or other Url) linked to the web site as a WebPage.External
        /// </summary>
        /// <remarks>
        /// Use .OfType WebPage.Internal to get just the internal ones if that's what you want
        /// </remarks>
        public  static IEnumerable<WebPage> GetAllPagesUnder(Uri urlRoot)
        {
            var queue = new Queue<Uri>();
            var allSiteUrls = new HashSet<Uri>();

            queue.Enqueue(urlRoot);
            allSiteUrls.Add(urlRoot);

            while (queue.Count > 0)
            {
                Uri url = queue.Dequeue();

                HttpWebRequest oReq = (HttpWebRequest)WebRequest.Create(url);
                oReq.UserAgent = @"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5";

                HttpWebResponse resp = (HttpWebResponse)oReq.GetResponse();

                WebPage result;

                if (resp.ContentType.StartsWith("text/html", StringComparison.InvariantCultureIgnoreCase))
                {
                    HtmlDocument doc = new HtmlDocument();
                    try
                    {
                        var resultStream = resp.GetResponseStream();
                        doc.Load(resultStream); // The HtmlAgilityPack
                        result = new Internal() { Url = url, HtmlDocument = doc };
                    }
                    catch (System.Net.WebException ex)
                    {
                        result = new WebPage.Error() { Url = url, Exception = ex };
                    }
                    catch (Exception ex)
                    {
                        ex.Data.Add("Url", url);    // Annotate the exception with the Url
                        throw;
                    }

                    // Success, hand off the page
                    yield return new WebPage.Internal() { Url = url, HtmlDocument = doc };

                    // And and now queue up all the links on this page
                    foreach (HtmlNode link in doc.DocumentNode.SelectNodes(@"//a[@href]"))
                    {
                        HtmlAttribute att = link.Attributes["href"];
                        if (att == null) continue;
                        string href = att.Value;
                        if (href.StartsWith("javascript", StringComparison.InvariantCultureIgnoreCase)) continue;      // ignore javascript on buttons using a tags

                        Uri urlNext = new Uri(href, UriKind.RelativeOrAbsolute);

                        // Make it absolute if it's relative
                        if (!urlNext.IsAbsoluteUri)
                        {
                            urlNext = new Uri(urlRoot, urlNext);
                        }

                        if (!allSiteUrls.Contains(urlNext))
                        {
                            allSiteUrls.Add(urlNext);               // keep track of every page we've handed off

                            if (urlRoot.IsBaseOf(urlNext))
                            {
                                queue.Enqueue(urlNext);
                            }
                            else
                            {
                                yield return new WebPage.External() { Url = urlNext };
                            }
                        }
                    }
                }
            }
        }

        ///// <summary>
        ///// In the future might provide all the images too??
        ///// </summary>
        //public class Image : WebPage
        //{
        //}

        /// <summary>
        /// Error loading page
        /// </summary>
        public class Error : WebPage
        {
            public int HttpResult { get; set; }
            public Exception Exception { get; set; }
        }

        /// <summary>
        /// External page - not followed
        /// </summary>
        /// <remarks>
        /// No body - go load it yourself
        /// </remarks>
        public class External : WebPage
        {
        }

        /// <summary>
        /// Internal page
        /// </summary>
        public class Internal : WebPage
        {
            /// <summary>
            /// For internal pages we load the document for you
            /// </summary>
            public virtual HtmlDocument HtmlDocument { get; internal set; }
        }
    }
}

次の行で停止することはありません。

public Uri Url { get; set; }

また、このクラスの他の行には絶対に立ち寄らないでください。行を削除した場合のみ:

public Uri Url { get; set; }

その後、他の行で停止します。しかし、なぜ最初の行で止まらないのかわかりませんか?どうすれば修正できますか?

自動プロパティについて読んでみましたが、それが何であるかを理解できず、このクラスで使用したくありませんでした。

4

4 に答える 4

1

ブレークポイントは、自動実装されたプロパティではサポートされていません。メソッドの最初の行で設定してみてください。GetAllPagesUnder

于 2012-05-11T10:40:32.053 に答える
1

このクラスを宣言する場所にブレークポイントを追加します。

WebPage wp =new WebPage();

Asifが上で言ったように、宣言で止まらないからです。

または、クラスを宣言した後、Url 変数を設定します

wp.Url="blahblahblah.html";

編集:自動プロパティでブレークポイントが機能しないことに気づきませんでした。あなたを変える

public Uri Url{get;set;}

private Uri _Url=new Uri();
public Url URL{get{return _Url;}set{_Url = value;}}

ここで行っているのは、プライベート変数名 _Url を作成し、プロパティ Url でアクセスすることです

使用は

Url="blahblahblah";

今使っているものと同じ

于 2012-05-11T10:43:36.253 に答える
0

あなたの質問からは非常に漠然としていますが、プログラムのどこかであなたが呼び出しているという予感があります:

var results = WebPage.GetAllPagesUnder([some uri]);

そして、そのメソッドが呼び出されたときにブレークポイントがヒットすることを期待していますか?

そうではありません-列挙子を生成しています。foreach列挙可能になるまで、コードは実際には何もしません。ToArrayまたは、ToListまたは同様のものを介して熱心にロードすることもできます。

自動プロパティについては、ブレークポイントを設定することはできませんが、その必要はありません。代わりに、プロパティを設定しているコードをブレークポイントするだけです。本当にしたい場合は、プライベートバッキングフィールドに固執し、プロパティを手動で実装してください。それができない場合は、 を受け取って設定するコンストラクターをクラスに与え、Uri代わりにそれをブレークポイントします。

于 2012-05-11T10:42:39.000 に答える
0

here で説明されているUrlように、プロパティにブレークポイントを設定できます。

ブレークポイントを設定する標準的な方法は、自動プロパティには機能しません。

于 2012-05-11T15:21:21.190 に答える