3 implementations of IStringCopyPasteService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
StringCopyPaste\TestStringCopyPasteService.cs (1)
17public sealed class TestStringCopyPasteService : IStringCopyPasteService
Microsoft.CodeAnalysis.EditorFeatures (2)
StringCopyPaste\IStringCopyPasteService.cs (1)
19internal sealed class DefaultStringCopyPasteService : IStringCopyPasteService
StringCopyPaste\WpfStringCopyPasteService.cs (1)
17internal sealed class WpfStringCopyPasteService : IStringCopyPasteService
9 references to IStringCopyPasteService
Microsoft.CodeAnalysis.CSharp.EditorFeatures (5)
StringCopyPaste\StringCopyPasteCommandHandler.cs (2)
211var copyPasteService = documentBeforePaste.Project.Solution.Services.GetRequiredService<IStringCopyPasteService>();
StringCopyPaste\StringCopyPasteCommandHandler_CutCopy.cs (3)
50private static (string? dataToStore, IStringCopyPasteService service) CaptureCutCopyInformation( 57var copyPasteService = document.Project.Solution.Services.GetService<IStringCopyPasteService>();
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
StringCopyPaste\StringCopyPasteCommandHandlerTests.cs (1)
89var service = workspace.Services.GetRequiredService<IStringCopyPasteService>() as TestStringCopyPasteService;
StringCopyPaste\TestStringCopyPasteService.cs (1)
16[ExportWorkspaceService(typeof(IStringCopyPasteService), ServiceLayer.Test), Shared, PartNotDiscoverable]
Microsoft.CodeAnalysis.EditorFeatures (2)
StringCopyPaste\IStringCopyPasteService.cs (1)
18[ExportWorkspaceService(typeof(IStringCopyPasteService)), Shared]
StringCopyPaste\WpfStringCopyPasteService.cs (1)
16[ExportWorkspaceService(typeof(IStringCopyPasteService), ServiceLayer.Host), Shared]