12 references to DisposeMethodKind
Microsoft.CodeAnalysis.Analyzers (12)
src\RoslynAnalyzers\Utilities\Compiler\Extensions\IMethodSymbolExtensions.cs (12)
254
/// Gets the <see cref="
DisposeMethodKind
"/> for the given method.
256
public static
DisposeMethodKind
GetDisposeMethodKind(this IMethodSymbol method, Compilation compilation)
268
/// Gets the <see cref="
DisposeMethodKind
"/> for the given method.
270
public static
DisposeMethodKind
GetDisposeMethodKind(
288
return
DisposeMethodKind
.Dispose;
292
return
DisposeMethodKind
.DisposeBool;
296
return
DisposeMethodKind
.DisposeAsync;
300
return
DisposeMethodKind
.DisposeCoreAsync;
304
return
DisposeMethodKind
.DisposeCoreAsync;
308
return
DisposeMethodKind
.Close;
312
return
DisposeMethodKind
.CloseAsync;
316
return
DisposeMethodKind
.None;