6 references to ImplementInterfaceCodeAction
Microsoft.CodeAnalysis.Features (6)
ImplementInterface\AbstractImplementInterfaceService.CodeAction.cs (5)
65
return new
ImplementInterfaceCodeAction
(service, document, options, state, explicitly: false, abstractly: true, onlyRemaining: true, throughMember: null);
74
return new
ImplementInterfaceCodeAction
(service, document, options, state, explicitly: false, abstractly: false, onlyRemaining: true, throughMember: null);
83
return new
ImplementInterfaceCodeAction
(service, document, options, state, explicitly: true, abstractly: false, onlyRemaining: false, throughMember: null);
93
return new
ImplementInterfaceCodeAction
(service, document, options, state, explicitly: false, abstractly: false, onlyRemaining: false, throughMember: throughMember);
102
return new
ImplementInterfaceCodeAction
(service, document, options, state, explicitly: true, abstractly: false, onlyRemaining: true, throughMember: null);
ImplementInterface\AbstractImplementInterfaceService.DisposePatternCodeAction.cs (1)
98
ISymbol? throughMember) :
base
(service, document, options, state, explicitly, abstractly, onlyRemaining: !explicitly, throughMember)