Class ToastMessage
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.ToastMessage.dll
- API Level:
- 4
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
-
ToastMessage
Properties
Declaration
C#Copypublic string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
API Level: 4
Methods
Declaration
C#Copypublic void Post()
Examples
CopyToastMessage toast = new ToastMessage { Message = "Hello TIzen" }; toast.Post();
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown when the message is null. |