尝试调用委托时出现“方法不受支持”错误

时间:2010-08-18 19:58:09

标签: c# .net multithreading silverlight delegates

我有一个函数Run(string, string[]),我想在一个单独的线程上运行,所以我使用的是委托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方法,我收到Specified method is not supported消息BeginInvoke()。出了什么问题?

我正在使用Silverlight 4.0和VS2010。

1 个答案:

答案 0 :(得分:7)

异步Delegate.BeginInvoke不适用于Silverlight中的代理。

您应该使用BackgroundWorker instead以异步方式运行任何内容。