C# Класс PhotoSharingApp.Universal.Views.MessageDialogService

A dialog service that uses MessageDialog for showing messages to the user.
Наследование: IDialogService
Показать файл Открыть проект

Открытые методы

Метод Описание
MessageDialogService ( ) : System

The constructor.

ShowGenericServiceErrorNotification ( ) : System.Threading.Tasks.Task

Shows a notification that there is an issue with communicating to the service.

ShowNotification ( string message, string title, bool useResourceLoader = true ) : System.Threading.Tasks.Task

Shows the notification.

ShowYesNoNotification ( string message, string title, bool useResourceLoader = true ) : Task

Shows a notification that lets the user choose between yes and no.

Описание методов

MessageDialogService() публичный Метод

The constructor.
public MessageDialogService ( ) : System
Результат System

ShowGenericServiceErrorNotification() публичный Метод

Shows a notification that there is an issue with communicating to the service.
public ShowGenericServiceErrorNotification ( ) : System.Threading.Tasks.Task
Результат System.Threading.Tasks.Task

ShowNotification() публичный Метод

Shows the notification.
public ShowNotification ( string message, string title, bool useResourceLoader = true ) : System.Threading.Tasks.Task
message string The message.
title string The title.
useResourceLoader bool /// if set to true the message and title /// parameters specify the resource id. ///
Результат System.Threading.Tasks.Task

ShowYesNoNotification() публичный Метод

Shows a notification that lets the user choose between yes and no.
public ShowYesNoNotification ( string message, string title, bool useResourceLoader = true ) : Task
message string The message.
title string The title.
useResourceLoader bool /// if set to true the message and title /// parameters specify the resource id. ///
Результат Task