8 instantiations of ImplementInterfaceConfiguration
Microsoft.CodeAnalysis.CodeStyle.Fixes (8)
src\Analyzers\Core\CodeFixes\ImplementInterface\AbstractImplementInterfaceService.cs (8)
72this, document, state.Info, options, new() { OnlyRemaining = true, ImplementDisposePattern = implementDisposePattern }); 198yield return new() { OnlyRemaining = true }; 201yield return new() { OnlyRemaining = true, ImplementDisposePattern = true, }; 205yield return new() { ThroughMember = member }; 208yield return new() { OnlyRemaining = true, Abstractly = true }; 213yield return new() { Explicitly = true }; 216yield return new() { ImplementDisposePattern = true, Explicitly = true }; 220yield return new() { OnlyRemaining = true, Explicitly = true };
9 references to ImplementInterfaceConfiguration
Microsoft.CodeAnalysis.CodeStyle.Fixes (9)
src\Analyzers\Core\CodeFixes\ImplementInterface\AbstractImplementInterfaceService.cs (6)
111ImplementInterfaceConfiguration configuration, 123ImplementInterfaceConfiguration configuration, 159await foreach (var implementOptions in GetImplementOptionsAsync(document, info, cancellationToken).ConfigureAwait(false)) 173private static async IAsyncEnumerable<ImplementInterfaceConfiguration> GetImplementOptionsAsync( 223private static string GetTitle(ImplementInterfaceConfiguration options) 253ImplementInterfaceConfiguration options)
src\Analyzers\Core\CodeFixes\ImplementInterface\IImplementInterfaceService.cs (1)
36ImplementInterfaceConfiguration configuration,
src\Analyzers\Core\CodeFixes\ImplementInterface\ImplementInterfaceGenerator.cs (2)
34private readonly ImplementInterfaceConfiguration Configuration; 47ImplementInterfaceConfiguration configuration)