Converting Callback Functions to Task Pattern
I was recently working on a Windows Store (Metro) app. I was given a proxy class to communicate with the server. Proxy class was following the callback pattern. What I mean by that is when I invoke a server side method, I pass in an Action<T> that would be invoked when the server call completes. …
Continue reading ‘Converting Callback Functions to Task Pattern’ »