CoreDispatcher.TryRunAsync(CoreDispatcherPriority, DispatchedHandler) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
작업자 스레드에서 UI 스레드에서 지정된 콜백을 예약하고 결과를 비동기적으로 반환합니다.
public:
virtual IAsyncOperation<bool> ^ TryRunAsync(CoreDispatcherPriority priority, DispatchedHandler ^ agileCallback) = TryRunAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<bool> TryRunAsync(CoreDispatcherPriority const& priority, DispatchedHandler const& agileCallback);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<bool> TryRunAsync(CoreDispatcherPriority priority, DispatchedHandler agileCallback);
function tryRunAsync(priority, agileCallback)
Public Function TryRunAsync (priority As CoreDispatcherPriority, agileCallback As DispatchedHandler) As IAsyncOperation(Of Boolean)
매개 변수
- priority
- CoreDispatcherPriority
이벤트 디스패치의 우선 순위를 지정합니다. 이를 CoreDispatcherPriority.Normal로 설정합니다.
- agileCallback
- DispatchedHandler
이벤트가 디스패치될 때 디스패처가 반환하는 콜백입니다.
반환
비동기 작업입니다.
- 특성
설명
CoreDispatcher가 종료되는 동안 호출되는 경우 이 메서드는 성공적으로 완료되고 false를 반환합니다.