blob: 1f9ffe5d164608d4d584ea128cfa68abb681f34b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
using System;
using System.IO.IsolatedStorage;
using System.Net;
using System.Windows;
using System.Windows.Controls;
namespace Juick.Classes
{
public class AccountManager
{
private string _userName;
private string _password;
public string UserName
{
get
{
if (_userName == null)
{
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("user", out _userName);
}
return _userName;
}
set
{
_userName = value;
IsolatedStorageSettings.ApplicationSettings["user"] = _userName;
}
}
public string Password
{
get
{
if (_password == null)
{
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("password", out _password);
}
return _password;
}
set
{
_password = value;
IsolatedStorageSettings.ApplicationSettings["password"] = value;
}
}
public bool IsAuthenticated
{
get {
bool authenticated;
IsolatedStorageSettings.ApplicationSettings.TryGetValue<bool>("authenticated", out authenticated);
return authenticated;
}
set { IsolatedStorageSettings.ApplicationSettings["authenticated"] = value; }
}
public string NotificationUri
{
get
{
string savedUri;
IsolatedStorageSettings.ApplicationSettings.TryGetValue<string>("notification_uri", out savedUri);
return savedUri;
}
set
{
IsolatedStorageSettings.ApplicationSettings["notification_uri"] = value;
}
}
public void SignOut(Page page)
{
IsAuthenticated = false;
page.NavigationService.Navigate(new Uri("/LoginView.xaml", UriKind.Relative));
page.Dispatcher.BeginInvoke(() => page.NavigationService.RemoveBackEntry());
}
}
}
|