12 references to DisposeMethodKind
GenerateDocumentationAndConfigFiles (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(
290
return
DisposeMethodKind
.Dispose;
294
return
DisposeMethodKind
.DisposeBool;
298
return
DisposeMethodKind
.DisposeAsync;
302
return
DisposeMethodKind
.DisposeCoreAsync;
306
return
DisposeMethodKind
.DisposeCoreAsync;
310
return
DisposeMethodKind
.Close;
314
return
DisposeMethodKind
.CloseAsync;
318
return
DisposeMethodKind
.None;