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?
|
feedback
|
|
Use the Dispatcher for that. Deployment.Current.Dispatcher.BeginInvoke is the method you want :). It accepts Funcs and Actions | |||
|
feedback
|
Dispatcherbut there is no EndInvoke. – AnthonyWJones Mar 10 '10 at 14:50