C# 클래스 Cimbalino.Phone.Toolkit.Services.ShellToastService

Represents an implementation of the IShellToastService.
상속: IShellToastService
파일 보기 프로젝트 열기: Cimbalino/Cimbalino-Phone-Toolkit

공개 메소드들

메소드 설명
Show ( string title, string content ) : void

Display a toast message with the specified title and content.

Show ( string title, string content, Uri navigationUri ) : void

Display a toast message with the specified title and content.

Show ( string title, string content, Uri navigationUri, Uri soundUri ) : void

Display a toast message with the specified title and content.

Show ( string title, string content, Uri navigationUri, bool silent ) : void

Display a toast message with the specified title and content.

메소드 상세

Show() 공개 메소드

Display a toast message with the specified title and content.
public Show ( string title, string content ) : void
title string The title of the toast message.
content string The contents of the toast message.
리턴 void

Show() 공개 메소드

Display a toast message with the specified title and content.
public Show ( string title, string content, Uri navigationUri ) : void
title string The title of the toast message.
content string The contents of the toast message.
navigationUri System.Uri Uri to navigate to if the user taps the toast message.
리턴 void

Show() 공개 메소드

Display a toast message with the specified title and content.
public Show ( string title, string content, Uri navigationUri, Uri soundUri ) : void
title string The title of the toast message.
content string The contents of the toast message.
navigationUri System.Uri Uri to navigate to if the user taps the toast message.
soundUri System.Uri The sound URI of the toast message.
리턴 void

Show() 공개 메소드

Display a toast message with the specified title and content.
public Show ( string title, string content, Uri navigationUri, bool silent ) : void
title string The title of the toast message.
content string The contents of the toast message.
navigationUri System.Uri Uri to navigate to if the user taps the toast message.
silent bool true if the toast should not use the default sound; otherwise, false.
리턴 void