# Toast

> Represents a toast notification in Windows Store Apps.

## Definition

* **Type:** Class
* **Namespace:** [UnityEngine.WSA](/engine/6000.3/script-reference/unityengine/wsa.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public sealed class Toast
```

## Remarks

Application must be declared "Toast capable" in manifest for toast notifications to work.

## Properties

| Property                                                                                    | Description                                                                  |
| ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
| [activated](/engine/6000.3/script-reference/unityengine/wsa/toast/activated.md)             | true if toast was activated by user.                                         |
| [arguments](/engine/6000.3/script-reference/unityengine/wsa/toast/arguments.md)             | Arguments to be passed for application when toast notification is activated. |
| [dismissed](/engine/6000.3/script-reference/unityengine/wsa/toast/dismissed.md)             | true if toast notification was dismissed (for any reason).                   |
| [dismissedByUser](/engine/6000.3/script-reference/unityengine/wsa/toast/dismissedbyuser.md) | true if toast notification was explicitly dismissed by user.                 |

## Methods

| Method                                                                | Description                        |
| --------------------------------------------------------------------- | ---------------------------------- |
| [Hide](/engine/6000.3/script-reference/unityengine/wsa/toast/hide.md) | Hide displayed toast notification. |
| [Show](/engine/6000.3/script-reference/unityengine/wsa/toast/show.md) | Show toast notification.           |

## Static Methods

| Method                                                                              | Description                              |
| ----------------------------------------------------------------------------------- | ---------------------------------------- |
| [Create](/engine/6000.3/script-reference/unityengine/wsa/toast/create.md)           | Create toast notification.               |
| [GetTemplate](/engine/6000.3/script-reference/unityengine/wsa/toast/gettemplate.md) | Get template XML for toast notification. |
