Last active
September 9, 2021 17:55
-
-
Save mirmostafa/2e814f08fe813be83d6c6e32736a856c to your computer and use it in GitHub Desktop.
IAsyncDisposable Pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public virtual ValueTask DisposeAsync() | |
{ | |
try | |
{ | |
Dispose(); | |
return default; | |
} | |
catch (Exception exc) | |
{ | |
return new ValueTask(Task.FromException(exc)); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment