예제 #1
0
 /// <summary>
 /// Initializes a new instance of the HtmlNavigator and loads an HTML document from a stream.
 /// </summary>
 /// <param name="stream">The input stream.</param>
 public HtmlNodeNavigator(Stream stream)
 {
     _doc.Load(stream);
     Reset();
 }
예제 #2
0
 public static void Load2(this HtmlDocument document, string path)
 {
     document.Load(path);
 }