Esempio n. 1
0
        static void Main(string[] args)
        {
            TinyCurl tc = new TinyCurl("http://roomavix.blogspot.com");
            tc.SetUserAgent("Mozilla/5.0");
            tc.SendGetRequest();
            Console.WriteLine(tc.GetResponseHeaders());

            Console.Read();
        }
Esempio n. 2
0
        static void Main(string[] args)
        {
            TinyCurl tc = new TinyCurl("http://roomavix.blogspot.com");

            tc.SetUserAgent("Mozilla/5.0");
            tc.SendGetRequest();
            Console.WriteLine(tc.GetResponseHeaders());

            Console.Read();
        }