I need to implement ISynchronizeInvoke interface in UWP app. Even with using System.ComponentModel; it says type or namespace ISynchronizeInvoke could not found.
Does anyone know how to implement ISynchronizeInvoke interface in UWP app. I am building iOT App.
Thank you in Advance

Use SynchronizationContext instead, basically. That's the more modern replacement for ISynchronizeInvoke.
See more on this question at Stackoverflow