gpt4 book ai didi

c# - Microsoft.Bcl.Async 中是否有 ExceptionDispatchInfo 的模拟?

转载 作者:太空狗 更新时间:2023-10-30 00:24:57 27 4
gpt4 key购买 nike

是否有 ExceptionDispatchInfo 的模拟在 Microsoft.Bcl.Async ?我找不到类似的东西。

这个问题是由another question触发的我的。当异常的父 task 可用时,我可以使用 task.GetAwaiter().GetResult() 重新抛出,正如@StephenCleary 所建议的那样。

当它不可用时我有什么选择?

最佳答案

这是 ExceptionDispatchInfo 的实现 from Mono .据我测试,它似乎与 Microsoft .NET 4.0 兼容。

public sealed class ExceptionDispatchInfo
{
readonly Exception _exception;
readonly object _source;
readonly string _stackTrace;

const BindingFlags PrivateInstance = BindingFlags.Instance | BindingFlags.NonPublic;
static readonly FieldInfo RemoteStackTrace = typeof(Exception).GetField("_remoteStackTraceString", PrivateInstance);
static readonly FieldInfo Source = typeof(Exception).GetField("_source", PrivateInstance);
static readonly MethodInfo InternalPreserveStackTrace = typeof(Exception).GetMethod("InternalPreserveStackTrace", PrivateInstance);

private ExceptionDispatchInfo(Exception source)
{
_exception = source;
_stackTrace = _exception.StackTrace + Environment.NewLine;
_source = Source.GetValue(_exception);
}

public Exception SourceException { get { return _exception; } }

public static ExceptionDispatchInfo Capture(Exception source)
{
if (source == null)
throw new ArgumentNullException("source");

return new ExceptionDispatchInfo(source);
}

public void Throw()
{
try
{
throw _exception;
}
catch
{
InternalPreserveStackTrace.Invoke(_exception, new object[0]);
RemoteStackTrace.SetValue(_exception, _stackTrace);
Source.SetValue(_exception, _source);
throw;
}
}
}

关于c# - Microsoft.Bcl.Async 中是否有 ExceptionDispatchInfo 的模拟?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20171877/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com