Method | Description | |
---|---|---|
Create ( string xml ) : |
Create toast notification.
|
|
Create ( string image, string text ) : |
Create toast notification.
|
|
Hide ( ) : void |
Hide displayed toast notification.
|
|
Show ( ) : void |
Show toast notification.
|
Method | Description | |
---|---|---|
CreateToastImageAndText ( string image, string text ) : int | ||
CreateToastXml ( string xml ) : int | ||
GetActivated ( int id ) : bool | ||
GetArguments ( int id ) : string | ||
GetDismissed ( int id, bool byUser ) : bool | ||
GetTemplate ( ToastTemplate templ ) : string | ||
Hide ( int id ) : void | ||
SetArguments ( int id, string args ) : void | ||
Show ( int id ) : void | ||
Toast ( int id ) : System |
public static Create ( string xml ) : |
||
xml | string | XML document with tile data. |
return |
public static Create ( string image, string text ) : |
||
image | string | Uri to image to show on a toast, can be empty, in that case text-only notification will be shown. |
text | string | A text to display on a toast notification. |
return |