C# 클래스 UnityEngine.WSA.Toast

Represents a toast notification in Windows Store Apps.

파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 메소드들

메소드 설명
Create ( string xml ) : Toast

Create toast notification.

Create ( string image, string text ) : Toast

Create toast notification.

Hide ( ) : void

Hide displayed toast notification.

Show ( ) : void

Show toast notification.

비공개 메소드들

메소드 설명
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

메소드 상세

Create() 공개 정적인 메소드

Create toast notification.

public static Create ( string xml ) : Toast
xml string XML document with tile data.
리턴 Toast

Create() 공개 정적인 메소드

Create toast notification.

public static Create ( string image, string text ) : Toast
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.
리턴 Toast

Hide() 공개 메소드

Hide displayed toast notification.

public Hide ( ) : void
리턴 void

Show() 공개 메소드

Show toast notification.

public Show ( ) : void
리턴 void