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

Represents an implementation of the IShellToastService.
Inheritance: IShellToastService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method 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 method

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.
return void

Show() public method

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.
return void

Show() public method

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.
return void

Show() public method

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.
return void