다음을 통해 공유


TaskExtensions.DispatcherOperationWait 메서드

정의

기본 DispatcherOperation이 완료되기를 기다립니다.

오버로드

DispatcherOperationWait(Task)

기본 DispatcherOperation이 완료되기를 무기한 기다립니다.

DispatcherOperationWait(Task, TimeSpan)

그런 다음 지정된 시간 동안 기본 DispatcherOperation이 완료되기를 기다립니다.

DispatcherOperationWait(Task)

기본 DispatcherOperation이 완료되기를 무기한 기다립니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Windows::Threading::DispatcherOperationStatus DispatcherOperationWait(System::Threading::Tasks::Task ^ this);
public static System.Windows.Threading.DispatcherOperationStatus DispatcherOperationWait (this System.Threading.Tasks.Task this);
static member DispatcherOperationWait :  -> System.Windows.Threading.DispatcherOperationStatus
<Extension()>
Public Function DispatcherOperationWait (this As Task) As DispatcherOperationStatus

매개 변수

this
Task

Task과 연결된 DispatcherOperation입니다.

반환

DispatcherOperationStatus

기본 DispatcherOperation의 상태입니다.

예외

TaskDispatcherOperation과 관련되지 않은 경우

설명

호출을 IsDispatcherOperationTask 확인 하는 메서드 있는지 여부를 Task 연관 된를 DispatcherOperation 이 메서드를 호출 하기 전에 합니다.

적용 대상

DispatcherOperationWait(Task, TimeSpan)

그런 다음 지정된 시간 동안 기본 DispatcherOperation이 완료되기를 기다립니다.

public:
[System::Runtime::CompilerServices::Extension]
 static System::Windows::Threading::DispatcherOperationStatus DispatcherOperationWait(System::Threading::Tasks::Task ^ this, TimeSpan timeout);
public static System.Windows.Threading.DispatcherOperationStatus DispatcherOperationWait (this System.Threading.Tasks.Task this, TimeSpan timeout);
static member DispatcherOperationWait : TimeSpan -> System.Windows.Threading.DispatcherOperationStatus
<Extension()>
Public Function DispatcherOperationWait (this As Task, timeout As TimeSpan) As DispatcherOperationStatus

매개 변수

this
Task

Task과 연결된 DispatcherOperation입니다.

timeout
TimeSpan

대기할 시간입니다.

반환

DispatcherOperationStatus

기본 DispatcherOperation의 상태입니다.

예외

TaskDispatcherOperation과 관련되지 않은 경우

설명

호출을 IsDispatcherOperationTask 확인 하는 메서드 있는지 여부를 Task 연관 된를 DispatcherOperation 이 메서드를 호출 하기 전에 합니다.

적용 대상