2 implementations of ISymbolMappingService
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\SymbolMappingServiceFactory.cs (1)
28
private sealed class SymbolMappingService :
ISymbolMappingService
SymbolMapping\SymbolMappingServiceFactory.cs (1)
16
internal class DefaultSymbolMappingService :
ISymbolMappingService
13 references to ISymbolMappingService
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
Peek\PeekableItemSource.cs (2)
112
var
symbolMappingService = services.GetRequiredService<
ISymbolMappingService
>();
Microsoft.CodeAnalysis.Features (9)
FindUsages\FindUsagesHelpers.cs (2)
43
var
mappingService = document.Project.Solution.Services.GetService<
ISymbolMappingService
>();
GoToDefinition\AbstractGoToDefinitionSymbolService.cs (2)
43
var
mappingService = services.GetRequiredService<
ISymbolMappingService
>();
InheritanceMargin\AbstractInheritanceMarginService_Helpers.cs (2)
90
var
mappingService = document.Project.Solution.Services.GetRequiredService<
ISymbolMappingService
>();
MetadataAsSource\IMetadataAsSourceFileProvider.cs (1)
45
/// Maps from a document to its project for the purposes of symbol mapping via <see cref="
ISymbolMappingService
"/>
MetadataAsSource\SymbolMappingServiceFactory.cs (1)
15
[ExportWorkspaceServiceFactory(typeof(
ISymbolMappingService
), WorkspaceKind.MetadataAsSource)]
SymbolMapping\SymbolMappingServiceFactory.cs (1)
15
[ExportWorkspaceService(typeof(
ISymbolMappingService
), ServiceLayer.Default), Shared]
Microsoft.VisualStudio.LanguageServices (2)
CallHierarchy\CallHierarchyCommandHandler.cs (2)
97
var
mappingService = document.Project.Solution.Services.GetService<
ISymbolMappingService
>();