问题标签 [sendasync]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
9595 浏览

c# - 拦截 C# HttpClient GetAsync

我有一个 Web 项目(C#、MVC5 但没有 WebAPI)和一个简单的 HTTP REST 客户端,它调用外部 REST 服务并获取 accessToken 等。

我想检查我的所有 Get/PostAsync 调用对 statusCode 401 的响应,但我发现我只能SendAsync在实现DelegatingHandler.

还有什么我可以做的,以免改变我所有异步调用的实现SendAsync吗?

(我真正想做的是刷新 accessToken。)

0 投票
2 回答
625 浏览

c# - C# Windows 窗体 ping.SendAsync 问题与 DataGridView

所以我在下面有这段代码。我找到了一个预览帖子,并从这里开始工作。但由于某种原因,它没有循环遍历并使用回复状态更新单元格。它只更新列表中的最后一个 ip。

我在做什么不正确?我认为向 ping.SendAsync 添加行会跟踪对相应 ip/row 的所有回复?

我正在使用的更新代码

0 投票
1 回答
362 浏览

asp.net - HttpClient 的所有方法都在内部调用 SendAsync 方法吗?

HttpClientieGetAsync等的所有方法都在PostAsync内部调用SendAsync方法吗?

0 投票
1 回答
1393 浏览

json - Xamarin.Forms problems sending large picture over HttpClient SendAsync in Json format

from my Xamarin.Forms app I'm sending a picture and other fields to the server using HttpClient in Json format. If I send a little picture I've got with my front camera it's working fine, if I send a larger picture I've got with the rear camera it doesn't work and I always get an exception: "Excepional error".

I tried to create the same code in a windows form application and it's working fine also with large images, but not from my App.

I have already modified on the server web.config to increase json content size:

Can someone help ?! Thanks!!

This is the code on my app:

0 投票
0 回答
305 浏览

c# - 无法将 lambda 表达式转换为类型“System.IAsyncResult”,因为它不是委托类型

有人可以帮我弄这个吗?我倾向于主要在 VB 中工作,所以这个 C# 编译错误是一个问题:

.FromAsync 函数调用内部出现红色下划线,编译错误为;“无法将 lambda 表达式转换为类型‘System.IAsyncResult’,因为它不是委托类型”。

0 投票
1 回答
38 浏览

c# - 不返回对部分内容 C# UWP 的 HttpRequest 响应

由于没有返回 HttpRequest 对部分内容 C# UWPDropbox、Google Drive 和 Onedrive 的响应,现在可以正常工作的代码突然无法正常工作。

我感觉 Visual Studio 或 Windows 10 SDK 升级导致了这种情况,或者 .Net 有我不知道的变化......

有没有其他人遇到过类似的问题?

0 投票
3 回答
2016 浏览

c# - WebAPI 返回 200 但 SendAsync 调用显示 500

我有一个在 POST 和 GET 上调用 WebAPI 异步的 MVC 应用程序。在本地运行 WebAPI 和 MVC 应用程序时,WebAPI 响应显示成功,但 SendAsync 请求返回 500。此外,Fiddler 不显示 API 调用。我怀疑它与异步请求的处理方式有关,但我不确定我错过了什么。

MVC 控制器对 API 的调用:

WebAPI 帖子:

在 Post 中设置返回断点显示有效响应,但在 MVC 控制器中的 response.Result 上显示 500。我什至尝试返回 OK 请求,无论响应如下:

关于为什么客户显示 500 的任何想法?

0 投票
0 回答
856 浏览

c# - 带有进度输出到控制台的 HttpClient SendAsync

我只是想有一个基本SendAsync的方法将它的进度写入控制台,即使在 GET 的一堆 SO 答案之后,我也没有真正看到这对 POST 是如何工作的。

我正在测试的文件约为 100Mb,当它遇到SendAsync方法时,它会一直等待完成。

我可能会错过什么?

0 投票
0 回答
565 浏览

c# - smtpClient.SendAsync:电子邮件永远不会到达 C#

我正在尝试通过 SendAsync 发送电子邮件。它永远不会到达。

事件:

我发送它已经十分钟了。消息确实通过 Send 到达。

这里有什么问题?

更新:我的代码包含使用;在我删除它后,电子邮件开始到达。有谁知道为什么

0 投票
0 回答
376 浏览

c# - UWP http client delay in getting response

I found this peculiar behaviour of UWP HttpClient.

For a simple get call of WCF service is taking time almost more than 100 seconds(happens for first few calls). I observed that the same service is way too faster in iOS and rest client.

Attaching the code, Please let me know, if i doing wrong.

Any help will be really appreciated.

Thanks and Regards,

Rummy