Hi All,
I'm using WebClient.Uploa dValues function to post the information to my site.
The problem start as this function is waiting for the server reply and download a full headers.
I tried to use is without assigning it to byte array, but without any performance improvement.
Any ideas ?
Thanks For the help.
I'm using WebClient.Uploa dValues function to post the information to my site.
Code:
byte[] response = myWebClient.UploadValues(_URL, "POST", PostInfo);
I tried to use is without assigning it to byte array, but without any performance improvement.
Code:
myWebClient.UploadValues(_URL, "POST", PostInfo);
Thanks For the help.