Azure Mobile Services & Portable Class Libraries - Part 2 Authentication Cont'd
In Part 1 I covered a simple implementation of the Authentication feature and portable class libraries from the Azure Mobile Services SDK. However, as mentioned in the "Good & Bad So Far" section; there is not a whole lot of code reuse other than the Azure endpoint and secret key. Let's refactor a bit by adding some interfaces, conditional compile statements and the MVVM Light Event Bus to help the same solution operate cleaner. The "after" code for part one is available here. Building Our Core PortableAzure.Core is our Portable Class Library that is being shared with the Windows 8 and Windows Phone project in the attempt to reuse as much code as possible. However,...