public static class WebApiHelperExtend
{
public static string InvokeApi(string url)
{
using (HttpClient httpClient = new HttpClient())
{
HttpRequestMessage message = new HttpRequestMessage();
message.Method = HttpMethod.Get;
message.RequestUri = new Uri(url);
var result = httpClient.SendAsync(message).Result;
string content = result.Content.ReadAsStringAsync().Result;
return content;
}
}
}
最后
以上就是高高月光最近收集整理的关于C#/.NET 微服务专题(webapi后端请求的扩展封装 )的全部内容,更多相关C#/.NET内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复