12 references to DisposeMethodKind
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (12)
src\RoslynAnalyzers\Utilities\Compiler\Extensions\IMethodSymbolExtensions.cs (12)
246/// Gets the <see cref="DisposeMethodKind"/> for the given method. 248public static DisposeMethodKind GetDisposeMethodKind(this IMethodSymbol method, Compilation compilation) 260/// Gets the <see cref="DisposeMethodKind"/> for the given method. 262public static DisposeMethodKind GetDisposeMethodKind( 280return DisposeMethodKind.Dispose; 284return DisposeMethodKind.DisposeBool; 288return DisposeMethodKind.DisposeAsync; 292return DisposeMethodKind.DisposeCoreAsync; 296return DisposeMethodKind.DisposeCoreAsync; 300return DisposeMethodKind.Close; 304return DisposeMethodKind.CloseAsync; 308return DisposeMethodKind.None;