20 references to DisposeMethodKind
Microsoft.CodeAnalysis.AnalyzerUtilities (20)
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;
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\DisposeAnalysis\DisposeAnalysis.DisposeDataFlowOperationVisitor.cs (6)
268var disposeMethodKind = GetDisposeMethodKind(method); 271case DisposeMethodKind.Dispose: 272case DisposeMethodKind.DisposeBool: 273case DisposeMethodKind.DisposeAsync: 277case DisposeMethodKind.Close: 281goto case DisposeMethodKind.Dispose;
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\DisposeAnalysis\DisposeAnalysisHelper.cs (1)
223public DisposeMethodKind GetDisposeMethodKind(IMethodSymbol method)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\DataFlowOperationVisitor.cs (1)
4225private protected DisposeMethodKind GetDisposeMethodKind(IMethodSymbol method)