How do I determine if I need to dispatch to UI thread in WinRT/Metro?

Viewed 5488

In .NET you have System.Threading.Thread.IsBackground.

Is there some equivalent of this in WinRT/Metro?

I have a method which changed UI properties, and I want to determine whether or not I need to dispatch the execution to the UI thread runtime.

2 Answers
Related