1 type derived from ImplementInterfaceCodeAction
Microsoft.CodeAnalysis.Features (1)
5 instantiations of ImplementInterfaceCodeAction
Microsoft.CodeAnalysis.Features (5)
ImplementInterface\AbstractImplementInterfaceService.CodeAction.cs (5)
65return new ImplementInterfaceCodeAction(service, document, options, state, explicitly: false, abstractly: true, onlyRemaining: true, throughMember: null);
74return new ImplementInterfaceCodeAction(service, document, options, state, explicitly: false, abstractly: false, onlyRemaining: true, throughMember: null);
83return new ImplementInterfaceCodeAction(service, document, options, state, explicitly: true, abstractly: false, onlyRemaining: false, throughMember: null);
93return new ImplementInterfaceCodeAction(service, document, options, state, explicitly: false, abstractly: false, onlyRemaining: false, throughMember: throughMember);
102return new ImplementInterfaceCodeAction(service, document, options, state, explicitly: true, abstractly: false, onlyRemaining: true, throughMember: null);
13 references to ImplementInterfaceCodeAction
Microsoft.CodeAnalysis.Features (12)
ImplementInterface\AbstractImplementInterfaceService.cs (7)
55var action = ShouldImplementDisposePattern(state, explicitly: false)
57: ImplementInterfaceCodeAction.CreateImplementCodeAction(this, document, options, state);
98yield return ImplementInterfaceCodeAction.CreateImplementCodeAction(this, document, options, state);
109yield return ImplementInterfaceCodeAction.CreateImplementThroughMemberCodeAction(this, document, options, state, member);
114yield return ImplementInterfaceCodeAction.CreateImplementAbstractlyCodeAction(this, document, options, state);
120yield return ImplementInterfaceCodeAction.CreateImplementExplicitlyCodeAction(this, document, options, state);
130yield return ImplementInterfaceCodeAction.CreateImplementRemainingExplicitlyCodeAction(this, document, options, state);
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (1)