- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我使用 Microsoft Graph C# SDK 来管理 OneDrive 文件。我的代码以并行方式处理存储(最大线程数 < 6)。为了取消不再有效的操作(用户关闭窗口或浏览到另一个文件夹),我使用了 CancellationToken
。
我有时会在取消任务时收到代码为 Error.Code = GraphErrorCode.Timeout
的 Microsoft.Graph.ServiceException
。这应该是 OperationCanceledException
。
如何解决?
代码很简单,所以我认为这是 Microsoft Graph 中的错误。 There are a lot of similar questions on StackOverflow .
SDK版本为1.7.0
(1.5.0
同样存在bug)
更新:
最佳答案
我想我在 Microsoft Graph C# SDK 中发现了这个错误.
请看implementation of HttpProvider.SendRequestAsync
method .
它包含以下代码:
internal async Task<HttpResponseMessage> SendRequestAsync(
HttpRequestMessage request,
HttpCompletionOption completionOption,
CancellationToken cancellationToken)
{
try
{
return await this.httpClient.SendAsync(request, completionOption, cancellationToken).ConfigureAwait(false);
}
catch (TaskCanceledException exception)
{
throw new ServiceException(
new Error
{
Code = ErrorConstants.Codes.Timeout,
Message = ErrorConstants.Messages.RequestTimedOut,
},
exception);
}
catch (Exception exception)
{
throw new ServiceException(
new Error
{
Code = ErrorConstants.Codes.GeneralException,
Message = ErrorConstants.Messages.UnexpectedExceptionOnSend,
},
exception);
}
}
如您所见,它使用 Code = ErrorConstants.Codes.Timeout
将 TaskCanceledException
转换为 ServiceException
。 TaskCanceledException
是 .NET 4.5 在取消任务时抛出的异常(CancellationToken
标记为取消任务)。该异常类继承自OperationCanceledException
。
我只有一个问题要问 MS - 为什么!???
在MSDN的很多地方都有关于OperationCanceledException
的短语是重要的异常,.NET任务管理代码使用它来验证取消原因并将任务切换到取消状态。任务的工作方法一定不能阻塞这个异常!如果您在任务代码中分析此异常,则必须重新抛出它以传播出去。以其他方式任务将以失败状态完成。只有运行任务并等待其完成的代码才能捕获此异常并对其进行分析。请阅读 - "Parallel Tasks", section "Canceling a Task"
If the cancellation token indicates that a cancellation has been requested, the ThrowIfCancellationRequested method creates an OperationCanceledException instance and passes in the cancellation token. It then throws the exception. This exception is the signal that notifies the .NET Framework that the task has been canceled; therefore, the OperationCanceledException should not be handled by user code within the task (it is often handled, however, outside of the task that was canceled). If you follow the steps that have been described in this section, the task will be stopped and its Status property will be set to the enumerated value TaskStatus.Canceled.
请删除catch(TaskCanceledException 异常)
。
更新:在我的代码中解决此错误的解决方法:
// This method creates Task (because it's asynchronous) that can be canceled by token
public async Task<DriveItem> MyUsefulMethodAsync(string driveId, string itemId, string selectItemParameter, CancellationToken? cancellationToken = null)
{
DriveItem res = default(DriveItem);
try
{
// My useful code, for example:
res = await Client.Drives[driveId].Items[itemId].Request()
.Select(selectItemParameter)
.GetAsync(cancellationToken ?? CancellationToken.None);
}
catch (OperationCanceledException)
{
// We have to propagate out this exception for fine Task state managing.
throw;
}
catch (Exception e)
{
// This is workaround for MSGraph bug (https://stackoverflow.com/a/47900445/987850)
var se = e as ServiceException;
if (se?.InnerException is OperationCanceledException)
{
throw se.InnerException;
}
// My error processing ...
}
return res;
}
使用示例:
try
{
// cancellation token from token source (can be invoked to cancel state by UI handlers)
var cancellationToken = m_bkCancelTokenSource.Token;
var driveItem = await MyUsefulMethodAsync(driveId, itemId, "id, name, parentReference, file, remoteItem, size", cancellationToken);
if (driveItem!=null)
{
// some code ...
}
}
catch(OperationCanceledException)
{
// task was canceled by user
}
关于c# - 取消读取文件信息的 OneDrive 任务时周期性超时异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47890382/
wait() 和 wait(timeout) 之间有什么区别。无论如何 wait() 需要等待通知调用,但为什么我们有 wait(timeout)? 那么 sleep(timeout) 和 wait(
如何向以下脚本添加超时?我希望它将文本显示为“超时”。 var bustcachevar = 1 //bust potential caching of external pages after in
我正在使用 Firebase once() 方法来检索 React Native 移动应用中的值。问题是,如果手机离线,once() 永远不会返回。文档说 ref.off() 方法应该取消回调,但这似
我在一个表中有一个大型数据集(超过 200 万行,每行超过 100 列),存储在 cassandra 中,几个月前(也许是 2 个月?)我能够执行一个简单的命令来跟踪该表中的记录数量: SELECT
我使用 jquery 开发移动应用程序,下面是我的代码,当我向包含的页面添加 5 或 6 行时,一切正常。但如果我添加多行显示错误消息:Javascript 执行超时。 function succes
我正在使用一个 javascript 确认,它将在 15 分钟后重复调用。如果用户未选择确认框中的任何选项我会在等待 1 分钟后重定向他。如何实现这一目标?我的代码是这样的 var timeo
每次我在沙箱环境中运行这段代码时,我都会超时并最终崩溃。我已经通过多个 IDE 运行它,但仍然找不到任何语法错误。如果有人看到了我没有看到的东西,我将非常感谢您的意见。 //assign variab
更新联系人后我会显示一条消息,1500 毫秒后我会转到另一个页面。我是这样做的: onSubmit() { if (this.form.valid) {
从昨天开始,我拼命尝试使用最新版本的 PHPMailer 运行一个非常简单的电子邮件脚本。 最荒谬的是,同一个脚本在两台服务器上不起作用,但在另一台服务器上却起作用。 这是我的尝试(来自 PHPMai
我已阅读以下 2 篇文章并尝试实现相同的文章。 我的代码是这样的,超时发生在这里 HttpWebRequest wr = (HttpWebRequest)WebRequest.Create(url);
我正在尝试连接到 wsdl 服务, 但收到此错误: wsdl 错误:获取 http://api.didww.com/api/?wsdl - HTTP 错误: header 的套接字读取超时 本地没有问
我在使用 Ansible 的 CentOs7 实例上从 Artifactory 下载 jar 文件时遇到问题。这是我第一次在 Linux 实例上这样做。 我在每个 Windows 实例上都使用了 wi
在过去的两天里,我一直在寻找原因,我在互联网上和堆栈上尝试了很多解决方案。 我有一个带有 ubuntu 16.04 和 apache2 的专用 VM -> 服务器版本:Apache/2.4.18 (U
我正处于构建 PHP 应用程序的早期阶段,其中一部分涉及使用 file_get_contents()从远程服务器获取大文件并将它们传输给用户。例如,要获取的目标文件是 200 mB。 如果下载到服务器
我正在尝试连接到本地网络内的路由器。到目前为止,我已经使用了 TcpClient。 检查我的代码: public static void RouterConnect() {
我正在尝试构建一段代码来搜索使用 Mechanize 和 Ruby 超时的页面。我的测试台包括一个专门写入超时的页面,以及 3 个正常运行的页面。这是代码: urls = ['http://examp
我是 python 的新手,也是语义网查询领域的新手。我正在使用 SPARQLWrapper 库查询 dbpedia,我搜索了库文档但未能找到从 sparqlWrapper 触发到 dbpedia 的
我正在从 GenServer 中的句柄信息功能调用 elixir genserver 以添加电话号码获取表单客户端。但是一旦调用了handle_call,所有者进程就会崩溃[超时]。请帮忙。 全局创建
假设我的 WCF 服务中有以下执行链: ServiceMethod 调用并等待 Method1,然后调用并等待 Method2,后者调用并等待 Method3。最后 ServiceMethod 在返回
目前我正在开发一个从远程服务器发送和接收文件的应用程序。为了进行网络操作,我正在使用 QNetworkAccessManager。 要上传文件,我使用 QNetworkAccessManager::p
我是一名优秀的程序员,十分优秀!