C# 클래스 Common.Utilities.Extensions.TaskExtension

Class containing extension methods for the System.Threading.Tasks.Task class.
파일 보기 프로젝트 열기: microsoft/Dynamics365PSA

공개 메소드들

메소드 설명
DoNotAwait ( Task task ) : void

Supresses Warning CS4014 Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call.

메소드 상세

DoNotAwait() 공개 정적인 메소드

Supresses Warning CS4014 Because this call is not awaited, execution of the current method continues before the call is completed. Consider applying the 'await' operator to the result of the call.
public static DoNotAwait ( Task task ) : void
task Task Task that is not "awaited".
리턴 void