APIResponse<List<APIResponse>> resp = APIResponse<List<APIResponse>>.Success();
string Url = "http://xxxx/xxx/xxx.json";
var httpWebRequest = (HttpWebRequest)WebRequest.Create(Url);
httpWebRequest.ContentType = "application/json";
httpWebRequest.Method = "POST";
string good = "";
string envName = "";
try
{
using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream()))//这句话没看明白,streamWriter是post的请求体的内容,
//但是它只是被new出来的一个对象,和httpWebRequest这个对象没有任何关系,它并不是httpWebRequest的一部分,所以httpWebRequest的请求体还是空的呀。。。为什么这样可以?
问题:
var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream());
这句话没看明白,变量streamWriter是post的请求体的内容,
但是它只是被new出来的一个对象,和httpWebRequest这个对象没有任何关系,它并不是httpWebRequest的一部分,所以httpWebRequest的请求体还是空的呀。。。为什么这样可以?
弑天下