//After a webrequest.. WebResponse response = request.GetResponse( ); using (StreamReader reader = new StreamReader(response.GetResponseStream( ))) { while (reader.Peek( ) != -1) { Console.WriteLine(reader.ReadLine( )); } }
Copyright � 2010 Dotfluent Network. Use of this web site constitutes acceptance of the w3mentor Terms of Use and Privacy Policy.