public static void SaveAuthResult(RscGoogleAuthResult auth)
 {
     Deployment.Current.Dispatcher.BeginInvoke(() =>
     {
         RscStore store = new RscStore();
         store.CreateFolderPath(AppLogic.csSecretsFolder);
         store.WriteXmlDataFile(AppLogic.csSecretsFolder + "\\" + "AUTH.xml", auth, true);
     });
 }
Example #2
0
        private void SaveAuthResult(RscGoogleAuthResult auth)
        {
            Deployment.Current.Dispatcher.BeginInvoke(() =>
            {
                //ATT: Logged ON!!!
                m_btnLogOut.Visibility = Rsc.Visible;

                RscStore store = new RscStore();
                store.CreateFolderPath(csSecretsFolder);
                store.WriteXmlDataFile(csSecretsFolder + "\\" + "AUTH.xml", auth, true);
            });
        }