ISynchronizeInvoke missing in System.ComponentModel

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

Jon Skeet
people
quotationmark

Use SynchronizationContext instead, basically. That's the more modern replacement for ISynchronizeInvoke.

people

See more on this question at Stackoverflow