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