本文介绍了在 HttpClient 中设置 HTTP 协议版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要向使用 HTTP 1.0 版的网络服务发出请求.我正在使用 HttpClient
,但我看不到任何设置 HTTP 版本的选项.
I need to make a request to a webservice that uses HTTP version 1.0. Im using HttpClient
, But I cant see any option to set HTTP version.
在哪里可以设置请求版本?
Where can i set the request version?
推荐答案
为了设置版本,您必须创建一个 HttpRequestMessage
并设置其Version
您传递给 HttpClient.SendAsync
.您可以使用帮助器 HttpVersion
实用程序类:
In order to set the version you'll have to create an instance of HttpRequestMessage
and set its Version
property which you pass to HttpClient.SendAsync
. You can use the helper HttpVersion
utility class:
var requestMessage = new HttpRequestMessage
{
Version = HttpVersion.Version10
};
var client = new HttpClient();
var response = await client.SendAsync(requestMessage);
这篇关于在 HttpClient 中设置 HTTP 协议版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!