0
私は私がどんな結果を得ることはありませんwww.google.com.vn
、HTTP GET応答
TcpClient c = new TcpClient();
IPAddress ip = IPAddress.Parse("74.125.128.94"); // www.google.com.vn
IPEndPoint remoteEP = new IPEndPoint(ip, 80);
c.Connect(remoteEP);
StreamReader sr = new StreamReader(c.GetStream());
String s = sr.ReadToEnd();
Console.WriteLine(s);
からのHTTP応答を取得するためにSocket
を使用します。何が問題なの?