You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement IAsyncDisposable in all types that implement IDisposable.
Assemblies affected
Some types like ODataMessageReader implement IDisposable but not IAsyncDisposable. The currently version of the library supports .NET 8 so we should be able to implement logic for both sync and async disposal of resources.
Expected result
Ability to asynchronously dispose resources where applicable
Actual result
For some types, one is forced to call the sync Dispose method to dispose resources.
The text was updated successfully, but these errors were encountered:
Implement
IAsyncDisposable
in all types that implementIDisposable
.Assemblies affected
Some types like
ODataMessageReader
implementIDisposable
but notIAsyncDisposable
. The currently version of the library supports .NET 8 so we should be able to implement logic for both sync and async disposal of resources.Expected result
Ability to asynchronously dispose resources where applicable
Actual result
For some types, one is forced to call the sync
Dispose
method to dispose resources.The text was updated successfully, but these errors were encountered: