summaryrefslogtreecommitdiff
path: root/Juick/MainPage.xaml.cs
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2013-04-15 14:08:35 +0400
committerGravatar Vitaly Takmazov2013-04-15 14:08:35 +0400
commite3409abca917fbc5fd49d6366276fff0e0f60d3e (patch)
tree22cdf10c0aeb2a074f662475d98fd0b89f7f945e /Juick/MainPage.xaml.cs
parent0f5b520aa44faedbdbab4cdc1020384e9720fe8d (diff)
Initial push notifications support
Diffstat (limited to 'Juick/MainPage.xaml.cs')
-rw-r--r--Juick/MainPage.xaml.cs90
1 files changed, 3 insertions, 87 deletions
diff --git a/Juick/MainPage.xaml.cs b/Juick/MainPage.xaml.cs
index b37bd8f..23418ff 100644
--- a/Juick/MainPage.xaml.cs
+++ b/Juick/MainPage.xaml.cs
@@ -19,50 +19,11 @@ namespace Juick
public MainPage()
{
// Holds the push channel that is created or found.
- //HttpNotificationChannel pushChannel; // unused variable
-
- // The name of our push channel.
- //string channelName = "JuickChannel"; // unused variable
+
InitializeComponent();
- /* // Try to find the push channel.
- pushChannel = HttpNotificationChannel.Find(channelName);
-
- // If the channel was not found, then create a new connection to the push service.
- if (pushChannel == null)
- {
- pushChannel = new HttpNotificationChannel(channelName);
-
- // Register for all the events before attempting to open the channel.
- pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
- pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
-
- // Register for this notification only if you need to receive the notifications while your application is running.
- pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);
-
- pushChannel.Open();
-
- // Bind this new channel for toast events.
- pushChannel.BindToShellToast();
-
- }
- else
- {
- // The channel was already open, so just register for all the events.
- pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
- pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);
-
- // Register for this notification only if you need to receive the notifications while your application is running.
- pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);
-
- // Display the URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
- System.Diagnostics.Debug.WriteLine(pushChannel.ChannelUri.ToString());
- MessageBox.Show(String.Format("Channel Uri is {0}",
- pushChannel.ChannelUri.ToString()));
-
- }*/
-
+
DataContext = App.AppContext;
Loaded += (o, args) =>
@@ -119,52 +80,7 @@ namespace Juick
}
- void PushChannel_ChannelUriUpdated(object sender, NotificationChannelUriEventArgs e)
- {
-
- Dispatcher.BeginInvoke(() =>
- {
- // Display the new URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
- System.Diagnostics.Debug.WriteLine(e.ChannelUri.ToString());
- MessageBox.Show(String.Format("Channel Uri is {0}",
- e.ChannelUri.ToString()));
-
- });
- }
- void PushChannel_ShellToastNotificationReceived(object sender, NotificationEventArgs e)
- {
- StringBuilder message = new StringBuilder();
- string relativeUri = string.Empty;
-
- message.AppendFormat("Received Toast {0}:\n", DateTime.Now.ToShortTimeString());
-
- // Parse out the information that was part of the message.
- foreach (string key in e.Collection.Keys)
- {
- message.AppendFormat("{0}: {1}\n", key, e.Collection[key]);
-
- if (string.Compare(
- key,
- "wp:Param",
- System.Globalization.CultureInfo.InvariantCulture,
- System.Globalization.CompareOptions.IgnoreCase) == 0)
- {
- relativeUri = e.Collection[key];
- }
- }
-
- // Display a dialog of all the fields in the toast.
- Dispatcher.BeginInvoke(() => MessageBox.Show(message.ToString()));
-
- }
- void PushChannel_ErrorOccurred(object sender, NotificationChannelErrorEventArgs e)
- {
- // Error handling logic for your particular application would be here.
- Dispatcher.BeginInvoke(() =>
- MessageBox.Show(String.Format("A push notification {0} error occurred. {1} ({2}) {3}",
- e.ErrorType, e.Message, e.ErrorCode, e.ErrorAdditionalData))
- );
- }
+
private void ApplicationBarIconButtonClick(object sender, EventArgs e)
{