why this options in socket..please give a detail
ResponseUri = resquest.RequestUri;
socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPEndPoint remoteEp = new IPEndPoint(Dns.Resolve(ResponseUri.Host).AddressList[0], ResponseUri.Port);
socket.Connect(remoteEp);
jobyPosted Oct 1, 2009, 10:58 PM
Roei BarPosted Sep 30, 2009, 3:14 PM
Socket is working with EndPoints, what are you refering to by the question of Detail?