quot;Method is not supportedquot; error when trying to invoke a delegate(“不支持方法尝试调用委托时出错)
问题描述
我有一个函数 Run(string, string[])
我想在单独的线程上运行,所以我使用委托和 BeginInvoke
:
I have a function Run(string, string[])
which I want to run on a separate thread, so I am using a delegate and BeginInvoke
:
private Func<string, string[], Stack<StackItem>> runner;
public MainPage()
{
runner = Run;
}
private void btnStep_Click(object sender, RoutedEventArgs e)
{
// snip
runner.BeginInvoke(tbCode.Text, GetArgs(), null, null); // Exception here
// snip
}
private Stack<StackItem> Run(string program, string[] args)
{
return interpreter.InterpretArgs(parser.Parse(lexer.Analyse(program)), args);
}
但是,我收到 NotSupportedException was unhandled by user code
并显示 BeginInvoke()
方法的 Specified method is not supported
消息代表的.怎么了?
However, I get a NotSupportedException was unhandled by user code
with a message of Specified method is not supported
for the BeginInvoke()
method of the delegate. What's going wrong?
我正在使用 Silverlight 4.0 和 VS2010.
I am using Silverlight 4.0 and VS2010.
推荐答案
异步 Delegate.BeginInvoke 不适用于 Silverlight 中的委托.
The asynchronous Delegate.BeginInvoke is not available for delegates in Silverlight.
您应该改用 BackgroundWorker异步运行任何东西.
You should use a BackgroundWorker instead to run anything asynchronously.
这篇关于“不支持方法"尝试调用委托时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“不支持方法"尝试调用委托时出错


- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01