Tom*_*ers 11 dotnet-httpclient http-patch
我正在尝试Patch
使用HttpClient
in dotnet核心创建一个请求.我找到了其他方法,
using (var client = new HttpClient())
{
client.GetAsync("/posts");
client.PostAsync("/posts", ...);
client.PutAsync("/posts", ...);
client.DeleteAsync("/posts");
}
Run Code Online (Sandbox Code Playgroud)
但似乎无法找到Patch
选项.可以Patch
用HttpClient
?做请求吗?如果是这样,有人能告诉我一个如何做的例子吗?
Tom*_*ers 12
感谢Daniel A. White的评论,我得到了以下工作.
using (var client = new HttpClient())
{
var request = new HttpRequestMessage(new HttpMethod("PATCH"), "your-api-endpoint");
try
{
response = await client.SendAsync(request);
}
catch (HttpRequestException ex)
{
// Failed
}
}
Run Code Online (Sandbox Code Playgroud)
###原答案###
从 .Net Core 2.1 开始,PatchAsync()
现在可用于HttpClient
参考: https://learn.microsoft.com/en-us/dotnet/api/system.net.http.httpclient.patchasync
HttpClient 没有开箱即用的补丁。简单地做这样的事情:
// more things here
using (var client = new HttpClient())
{
client.BaseAddress = hostUri;
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", base64Credentials);
var method = "PATCH";
var httpVerb = new HttpMethod(method);
var httpRequestMessage =
new HttpRequestMessage(httpVerb, path)
{
Content = stringContent
};
try
{
var response = await client.SendAsync(httpRequestMessage);
if (!response.IsSuccessStatusCode)
{
var responseCode = response.StatusCode;
var responseJson = await response.Content.ReadAsStringAsync();
throw new MyCustomException($"Unexpected http response {responseCode}: {responseJson}");
}
}
catch (Exception exception)
{
throw new MyCustomException($"Error patching {stringContent} in {path}", exception);
}
}
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
4034 次 |
最近记录: |