CancellationTokens 可以跨 AppDomains 使用吗
.NET 4 引入了一些类型来很好地支持协作取消。我希望能够取消在不同 AppDomain 中运行的操作。 CancellationToken 类型是一个结构体。如果我将它传递给另一个AppDomain,它会正常工作吗?
.NET 4 introduced some types to nicely support cooperative cancellation. I would like to be able to cancel an operation which is running in a different AppDomain. The CancellationToken type is a struct. If I pass it to another AppDomain, will it work as normal?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉 .NET 4 或取消令牌,但取消结构似乎没有 SerializedAttribute,因此您可能无法首先跨 AppDomain 边界获取它。
不过,您也许可以创建一个 MarshalByRefObject 包装器来为您执行此操作。
I'm not familiar with .NET 4 or cancellation tokens, but the cancellation struct doesn't appear to have the SerializableAttribute so you probably won't be able to get it across the AppDomain boundry in the first place.
You might be able to create a MarshalByRefObject wrapper to do this for you though.