12 references to DisposeMethodKind
Metrics (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( 288return DisposeMethodKind.Dispose; 292return DisposeMethodKind.DisposeBool; 296return DisposeMethodKind.DisposeAsync; 300return DisposeMethodKind.DisposeCoreAsync; 304return DisposeMethodKind.DisposeCoreAsync; 308return DisposeMethodKind.Close; 312return DisposeMethodKind.CloseAsync; 316return DisposeMethodKind.None;