C# Class Cimbalino.Phone.Toolkit.Services.ShellToastService

Represents an implementation of the IShellToastService.
Inheritance: IShellToastService
Afficher le fichier Open project: Cimbalino/Cimbalino-Phone-Toolkit

Méthodes publiques

Méthode Description
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.

Method Details

Show() public méthode

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.
Résultat void

Show() public méthode

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.
Résultat void

Show() public méthode

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.
Résultat void

Show() public méthode

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.
Résultat void