Exemplo n.º 1
0
        static void Main(string[] args)
        {
            var fetcher  = new UrlWithNavigationFetcher();
            var contents = fetcher.Fetch(new Uri("http://finance.yahoo.com"));

            Console.ReadKey();
        }
Exemplo n.º 2
0
 public void UseComplexNavigation()
 {
     var fetcher  = new UrlWithNavigationFetcher();
     var contents = fetcher.Fetch(new Uri("http://finance.yahoo.com"));
 }