C# 클래스 UnityEngine.WSA.Application

Provides essential methods related to Window Store application.

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

공개 메소드들

메소드 설명
InvokeOnAppThread ( AppCallbackItem item, bool waitUntilDone ) : void

Executes callback item on application thread.

InvokeOnUIThread ( AppCallbackItem item, bool waitUntilDone ) : void

Executes callback item on UI thread.

비공개 메소드들

메소드 설명
GetAdvertisingIdentifier ( ) : string
GetAppArguments ( ) : string
InternalTryInvokeOnAppThread ( AppCallbackItem item, bool waitUntilDone ) : bool
InternalTryInvokeOnUIThread ( AppCallbackItem item, bool waitUntilDone ) : bool
InvokeWindowActivatedEvent ( WindowActivationState state ) : void
InvokeWindowSizeChangedEvent ( int width, int height ) : void
RunningOnAppThread ( ) : bool
RunningOnUIThread ( ) : bool
TryInvokeOnAppThread ( AppCallbackItem item, bool waitUntilDone ) : bool
TryInvokeOnUIThread ( AppCallbackItem item, bool waitUntilDone ) : bool

메소드 상세

InvokeOnAppThread() 공개 정적인 메소드

Executes callback item on application thread.

public static InvokeOnAppThread ( AppCallbackItem item, bool waitUntilDone ) : void
item AppCallbackItem Item to execute.
waitUntilDone bool Wait until item is executed.
리턴 void

InvokeOnUIThread() 공개 정적인 메소드

Executes callback item on UI thread.

public static InvokeOnUIThread ( AppCallbackItem item, bool waitUntilDone ) : void
item AppCallbackItem Item to execute.
waitUntilDone bool Wait until item is executed.
리턴 void