C# Класс Common.Utilities.Extensions.TaskExtension

Class containing extension methods for the System.Threading.Tasks.Task class.
Показать файл Открыть проект

Открытые методы

Метод Описание
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