When using the current implementation of <code title="BrotliSharpLib.BrotliStream">BrotliStream</code> class in ASP.NET Core 3.0 Preview 7 web application you may receive the following error: ``` InvalidOperationException: Synchronous operations are disallowed. Call WriteAsync or set AllowSynchronousIO to true instead. ``` To fix this error, need to implement in the <code title="BrotliSharpLib.BrotliStream">BrotliStream</code> class a [`DisposeAsync`](https://docs.microsoft.com/en-us/dotnet/api/system.io.stream.disposeasync?view=netstandard-2.1) method (included in .NET Standard 2.1).