C# 클래스 PhotoSharingApp.Universal.Views.MessageDialogService

A dialog service that uses MessageDialog for showing messages to the user.
상속: IDialogService
파일 보기 프로젝트 열기: Microsoft/Appsample-Photosharing

공개 메소드들

메소드 설명
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