�����д�����Ĵ���,�������δ���,�������ͨ����������������URL��?
///<summary>
///���������������
///</summary>
///<param name="URL">�����ַ</param>
///<param name="method">POST��GET</param>
///<param name="showProgress">�Ƿ���ʾ�ϴ����</param>
private void SendRequestData(string URL, string method, bool
showProgress)
{
clientSocket = new TcpClient();
Uri URI = new Uri(URL);
clientSocket.Connect(URI.Host, URI.Port);
requestHeaders.Add("Host", URI.Host);
byte[] request = GetRequestHeaders(method + " " +
URI.PathAndQuery + " HTTP/1.1");
clientSocket.Client.Send(request);
//......
}
��Ϊ����ͻ������ھ������ڲ�ʹ��.���������TcpClientͨ�����������?