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#
Copy
public sealed class ToastMessage
- Inheritance
-
objectToast
Message
Properties
Declaration
C#
Copy
public string Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Methods
Declaration
C#
Copy
public void Post()
Examples
Copy
ToastMessage toast = new ToastMessage
{
Message = "Hello TIzen"
};
toast.Post();
Exceptions
Type | Condition |
---|---|
System. |
Thrown when the message is null. |