Example #1
0
 public PushClient(ApigeeClient apigeeClient, string userId, string notifierName)
 {
     this.apigeeClient = apigeeClient;
     this.settings     = ApplicationData.Current.LocalSettings;
     this.notifierName = notifierName;
     this.userId       = userId;
     this.init().ContinueWith(t =>
     {
         this.lastException = t.Exception;
     }
                              );
 }
Example #2
0
 public MainPage()
 {
     this.InitializeComponent();
     this.NavigationCacheMode = NavigationCacheMode.Required;
     usergrid = new Client.ApigeeClient();
 }