RESTSHARP中的“ getAsync”和“ executeGetAsync”有什么区别?

发布于 2025-02-13 00:04:50 字数 121 浏览 0 评论 0原文

方法retclient.getAsyncRESTCLIENT.EXECUTEGETASYNC之间有什么区别?我什么时候应该使用一个或另一个?

先感谢您。

What is the difference between the methods RestClient.GetAsync and RestClient.ExecuteGetAsync? When should I use one or the other?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你如我软肋 2025-02-20 00:04:50

如果服务器返回错误,则GetAsync将引发异常,因为它不是RESTCLIENT接口的一部分,并且返回task< int>即无法设置和响应状态代码。

如果服务器返回错误,则

executeGetAsync将不会引发异常,因为它的返回类型是restresponse,并且它具有响应率属性来设置错误。

有关更多信息:
<

GetAsync will throw an exception if the server returns an error because it is not part of RestClient interface and return Task<int> i.e. there is no way to set and response status code.

while

ExecuteGetAsync will not throw an exception if the server return an error because it's return type is RestResponse and it has ResponseStatus property to set an error.

For more information:
https://restsharp.dev/error-handling.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文