C# Класс Cimbalino.Phone.Toolkit.Services.ShellToastService

Represents an implementation of the IShellToastService.
Наследование: IShellToastService
Показать файл Открыть проект

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

Метод Описание
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