C# 클래스 NUnit.Framework.Internal.AsyncInvocationRegion

상속: IDisposable
파일 보기 프로젝트 열기: nunit/nunit

공개 메소드들

메소드 설명
Create ( Delegate @delegate ) : AsyncInvocationRegion
Create ( MethodInfo method ) : AsyncInvocationRegion
Dispose ( ) : void
IsAsyncOperation ( Delegate @delegate ) : bool
IsAsyncOperation ( MethodInfo method ) : bool
WaitForPendingOperationsToComplete ( object invocationResult ) : object

Waits for pending asynchronous operations to complete, if appropriate, and returns a proper result of the invocation by unwrapping task results

비공개 메소드들

메소드 설명
AsyncInvocationRegion ( ) : System

메소드 상세

Create() 공개 정적인 메소드

public static Create ( Delegate @delegate ) : AsyncInvocationRegion
@delegate System.Delegate
리턴 AsyncInvocationRegion

Create() 공개 정적인 메소드

public static Create ( MethodInfo method ) : AsyncInvocationRegion
method System.Reflection.MethodInfo
리턴 AsyncInvocationRegion

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

IsAsyncOperation() 공개 정적인 메소드

public static IsAsyncOperation ( Delegate @delegate ) : bool
@delegate System.Delegate
리턴 bool

IsAsyncOperation() 공개 정적인 메소드

public static IsAsyncOperation ( MethodInfo method ) : bool
method System.Reflection.MethodInfo
리턴 bool

WaitForPendingOperationsToComplete() 공개 추상적인 메소드

Waits for pending asynchronous operations to complete, if appropriate, and returns a proper result of the invocation by unwrapping task results
public abstract WaitForPendingOperationsToComplete ( object invocationResult ) : object
invocationResult object The raw result of the method invocation
리턴 object