📜  c# .net 3.5 post json httpclient - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:53.298000             🧑  作者: Mango

代码示例1
System.Net.WebClient client = new System.Net.WebClient();
 client.Headers.Add("content-type", "application/json");//set your header here, you can add multiple headers
 string s = Encoding.ASCII.GetString(client.UploadData("http://localhost:1111/Service.svc/SignIn", "POST", Encoding.Default.GetBytes("{\"EmailId\": \"admin@admin.com\",\"Password\": \"pass#123\"}")));