I have uwp app toast notification by WNS service. My app work fine when lunch in visual studio but when i run app from appx folder toast notification does not display. I dont have any exception when toast notification.Excuse me for bad language.
private async void ToastNotification(NotificationModel notificationModel)
{
string title = notificationModel.Title;
string content = notificationModel.Content;
string image = notificationModel.ImageUrl;
int conversationId = notificationModel.Id;
ToastContent toastContent = new ToastContent()
{
Visual = new ToastVisual()
{
BindingGeneric = new ToastBindingGeneric()
{
Children =
{
new AdaptiveText()
{
Text = title
},
new AdaptiveText()
{
Text = content
},
new AdaptiveImage()
{
Source = await DownloadImageToDisk(image)
}
},
AppLogoOverride = new ToastGenericAppLogo()
{
Source = await DownloadImageToDisk(notificationModel.IconUrl),
HintCrop = ToastGenericAppLogoCrop.Circle
}
}
},
Actions = new ToastActionsCustom()
{
Buttons =
{
new ToastButton("view", new QueryString()
{
{ "action", "GoToLink" },
{ "link", notificationModel.LinkAddress }
}.ToString())
}
},
ActivationType = ToastActivationType.Background,
Scenario = ToastScenario.Reminder
};
var doc = new XmlDocument();
doc.LoadXml(toastContent.GetContent());
var toast = new ToastNotification(doc);
toast.Failed += (o, args) =>
{
var message = args.ErrorCode;
MessageBox.Show(message.Message);
};
DesktopNotificationManagerCompat.CreateToastNotifier().Show(toast);
_beharaSqlDependency.NotificationIsSent(notificationModel.Id);
}