标签:pos app head post private base async cli pcl
private void Fn_Post<T>(T dto, string api) { HttpClient client = new HttpClient(); client.BaseAddress = new Uri("http://localhost:51529/"); string json = DefaultJsonSerializer.Serialize(dto); HttpContent httpcontent = new StringContent(json); httpcontent.Headers.ContentType = new MediaTypeHeaderValue("application/json"); var result = client.PostAsync(api, httpcontent).Result; client.Dispose(); }
标签:pos app head post private base async cli pcl
原文地址:https://www.cnblogs.com/jasonlai2016/p/11372900.html