We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed3c365 commit b6959c6Copy full SHA for b6959c6
src/Components/Components/src/OwningComponentBase.cs
@@ -74,8 +74,14 @@ async ValueTask IAsyncDisposable.DisposeAsync()
74
{
75
if (!IsDisposed)
76
77
- await DisposeAsyncCore().ConfigureAwait(false);
78
- Dispose(disposing: true);
+ try
+ {
79
+ await DisposeAsyncCore().ConfigureAwait(false);
80
+ }
81
+ finally
82
83
+ Dispose(disposing: true);
84
85
}
86
GC.SuppressFinalize(this);
87
0 commit comments