Windows Phone에서 푸시 알림 자습서를 수행하고 있습니다. 처음에는 알림을 푸시하는 데 아무런 문제가 없습니다.Azure 모바일 서비스 채널의 Null 예외
그러나 며칠 후 나는 코딩을 다시 열어이 오류 가지고 : App.xaml.cs를에서
System.NullReferenceException was unhandled by user code
HResult=-2147467261
Message=Object reference not set to an instance of an object.
Source=UtemFtmkDB
StackTrace:
at UtemFtmkDB.MainPage.ButtonSave_Click(Object sender, RoutedEventArgs e)
at System.Windows.Controls.Primitives.ButtonBase.OnClick()
at System.Windows.Controls.Button.OnClick()
at System.Windows.Controls.Primitives.ButtonBase.<OnMouseLeftButtonUp>b__3()
InnerException:
: 나는이 얻을 :App.CurrentChannel.ChannelUri.ToString()
에서 데이터를 검색 할 때마다
private void AcquirePushChannel()
{
CurrentChannel = HttpNotificationChannel.Find("MyPushChannel");
if (CurrentChannel == null)
{
CurrentChannel = new HttpNotificationChannel("MyPushChannel");
CurrentChannel.Open();
CurrentChannel.BindToShellTile();
}
}
을 오류. 왜?