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