3 types derived from DocumentPropertiesService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Formatting\RazorLineFormattingOptionsTests.cs (1)
29internal sealed class PropertiesService : DocumentPropertiesService
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorDocumentPropertiesServiceWrapper.cs (1)
9internal sealed class RazorDocumentPropertiesServiceWrapper : DocumentPropertiesService
Microsoft.VisualStudio.LanguageServices (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptVisualStudioProjectWrapper.LSPContainedDocumentServiceProvider.cs (1)
36private sealed class VirtualDocumentPropertiesService : DocumentPropertiesService
1 instantiation of DocumentPropertiesService
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Host\DocumentService\DocumentPropertiesService.cs (1)
12public static readonly DocumentPropertiesService Default = new();
10 references to DocumentPropertiesService
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Formatting\RazorLineFormattingOptionsTests.cs (1)
27=> typeof(TService) == typeof(DocumentPropertiesService) ? (TService?)(object)new PropertiesService() : null;
Microsoft.CodeAnalysis.ExternalAccess.Razor.Features (1)
RazorDocumentServiceProviderWrapper.cs (1)
66if (serviceType == typeof(DocumentPropertiesService))
Microsoft.CodeAnalysis.Workspaces (7)
Diagnostics\DiagnosticData.cs (2)
213var documentPropertiesService = document.DocumentServiceProvider.GetService<DocumentPropertiesService>();
Workspace\Host\DocumentService\DocumentPropertiesService.cs (1)
12public static readonly DocumentPropertiesService Default = new();
Workspace\Host\DocumentService\Extensions.cs (1)
29=> documentState.DocumentServiceProvider.GetService<DocumentPropertiesService>()?.DiagnosticsLspClientName == RazorCSharpLspClientName;
Workspace\Host\DocumentService\IDocumentOperationService.cs (1)
8/// TODO: Merge into <see cref="DocumentPropertiesService"/>.
Workspace\Solution\DefaultTextDocumentServiceProvider.cs (1)
30if (DocumentPropertiesService.Default is TService documentPropertiesService)
Workspace\Solution\SourceGeneratedDocumentState.cs (1)
282if (DocumentPropertiesService.Default is TService documentPropertiesService)
Microsoft.VisualStudio.LanguageServices (1)
ExternalAccess\VSTypeScript\Api\VSTypeScriptVisualStudioProjectWrapper.LSPContainedDocumentServiceProvider.cs (1)
28if (typeof(TService) == typeof(DocumentPropertiesService))