FixAllProvider.GetSupportedFixAllDiagnosticIds(CodeFixProvider) Method

Definition

Gets the diagnostic IDs for which fix all occurrences is supported. By default, it returns FixableDiagnosticIds for the given originalCodeFixProvider.

public:
 virtual System::Collections::Generic::IEnumerable<System::String ^> ^ GetSupportedFixAllDiagnosticIds(Microsoft::CodeAnalysis::CodeFixes::CodeFixProvider ^ originalCodeFixProvider);
public virtual System.Collections.Generic.IEnumerable<string> GetSupportedFixAllDiagnosticIds (Microsoft.CodeAnalysis.CodeFixes.CodeFixProvider originalCodeFixProvider);
abstract member GetSupportedFixAllDiagnosticIds : Microsoft.CodeAnalysis.CodeFixes.CodeFixProvider -> seq<string>
override this.GetSupportedFixAllDiagnosticIds : Microsoft.CodeAnalysis.CodeFixes.CodeFixProvider -> seq<string>
Public Overridable Function GetSupportedFixAllDiagnosticIds (originalCodeFixProvider As CodeFixProvider) As IEnumerable(Of String)

Parameters

originalCodeFixProvider
CodeFixProvider

Original code fix provider that returned this fix all provider from GetFixAllProvider() method.

Returns

Applies to