Topic | Value |
---|---|
Id | IDISP026 |
Severity | Warning |
Enabled | True |
Category | IDisposableAnalyzers.Correctness |
Code | ClassDeclarationAnalyzer |
Class with no virtual DisposeAsyncCore method should be sealed.
When implementing IAsyncDisposable, classes without a virtual DisposeAsyncCore method should be sealed. See https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-disposeasync.
Mark classes the implement IAsyncDisposable as sealed.
Configure the severity per project, for more info see MSDN.
#pragma warning disable IDISP026 // Class with no virtual DisposeAsyncCore method should be sealed
Code violating the rule here
#pragma warning restore IDISP026 // Class with no virtual DisposeAsyncCore method should be sealed
Or put this at the top of the file to disable all instances.
#pragma warning disable IDISP026 // Class with no virtual DisposeAsyncCore method should be sealed
[System.Diagnostics.CodeAnalysis.SuppressMessage("IDisposableAnalyzers.Correctness",
"IDISP026:Class with no virtual DisposeAsyncCore method should be sealed",
Justification = "Reason...")]