Skip to content
zixing edited this page May 10, 2021 · 1 revision
var client = new HttpClient();
client.Request.Uri = "http://www.baidu.com";
client.Request.Method = HttpMethod.PATCH;
var httpWebRequest = client.Request.PrepareRequest();
HttpResponse httpResponse = new HttpResponse();
httpResponse.GetResponse(httpWebRequest, "", false);
Clone this wiki locally