Class ToastMessage
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.ToastMessage.dll
The class helps you to create and show the ToastMessage which is a view quick message for the user.
C#Copypublic sealed class ToastMessage
- Inheritance
-
objectToastMessage
Properties
Declaration
C#Copypublic string Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Methods
Declaration
C#Copypublic void Post()
Examples
CopyToastMessage toast = new ToastMessage { Message = "Hello TIzen" }; toast.Post();
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | Thrown when the message is null. |