12 references to DisposeMethodKind
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (12)
src\RoslynAnalyzers\Utilities\Compiler\Extensions\IMethodSymbolExtensions.cs (12)
254/// Gets the <see cref="DisposeMethodKind"/> for the given method. 256public static DisposeMethodKind GetDisposeMethodKind(this IMethodSymbol method, Compilation compilation) 268/// Gets the <see cref="DisposeMethodKind"/> for the given method. 270public static DisposeMethodKind GetDisposeMethodKind( 290return DisposeMethodKind.Dispose; 294return DisposeMethodKind.DisposeBool; 298return DisposeMethodKind.DisposeAsync; 302return DisposeMethodKind.DisposeCoreAsync; 306return DisposeMethodKind.DisposeCoreAsync; 310return DisposeMethodKind.Close; 314return DisposeMethodKind.CloseAsync; 318return DisposeMethodKind.None;