I am writing a class library to perform operations on a site beyond my control. The site accepts message forms as input.
Can someone tell me if there is a difference between the two methods other than the data form for upload?
System.Net.WebClient.UploadData(Uri, Byte[]); System.Net.WebClient.UploadValues(String, NameValueCollection);
I have no objection to streamline the data anyway, but started to wonder what the difference really is, and it still indulges me in some strange way, not knowing if there is a difference.
Guidhouse
source share