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
Classes that implement IAsyncDisposable should typically also implement IDisposable to be prepared for either synchronous or asynchronous disposal. Only in case the disposal cannot be done synchronously, they do not need to implement IDisposable.
Classes that implement
IAsyncDisposable
should typically also implementIDisposable
to be prepared for either synchronous or asynchronous disposal. Only in case the disposal cannot be done synchronously, they do not need to implementIDisposable
.https://learn.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-disposeasync
The text was updated successfully, but these errors were encountered: