Skip to content

Latest commit

 

History

History
9 lines (5 loc) · 432 Bytes

PH_P009.md

File metadata and controls

9 lines (5 loc) · 432 Bytes

PH_P009 - Synchronous Dispose in Async Method

Problem

The conventional Dispose of a using statement can be blocking. For example, this can happen if an output buffer was not flushed before disposal.

Solution

The .NET Standard 2.1 introduced the DisposeAsync method as well as the IAsyncDisposable interface for asynchronous disposal. Prefix the using statement with await to invoke the asynchronous version.