Does anyone know why I can't call BeginInvoke / EndInvoke on Action and Func delegates in my Silverlight app? I keep getting a NotSupportedException. Is there a workaround?

link|improve this question

63% accept rate
1  
Can you post a small example, the only BeginInvoke method available is on the Dispatcher but there is no EndInvoke. – AnthonyWJones Mar 10 '10 at 14:50
feedback

1 Answer

Use the Dispatcher for that.

Deployment.Current.Dispatcher.BeginInvoke is the method you want :).

It accepts Funcs and Actions

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.