12 references to Language
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Options\OptionsProvider.cs (1)
24
=> ValueTaskFactory.FromResult(reader(optionsReader, languageServices.
Language
));
Microsoft.CodeAnalysis.EditorFeatures (4)
Options\TextBufferOptionProviders.cs (3)
24
return optionsProvider.GlobalOptions.GetDocumentationCommentOptions(lineFormattingOptions, languageServices.
Language
);
62
AutoFormattingOptions = optionsProvider.GlobalOptions.GetAutoFormattingOptions(languageServices.
Language
),
64
IndentStyle = optionsProvider.GlobalOptions.GetOption(IndentationOptionsStorage.SmartIndent, languageServices.
Language
)
Shared\Extensions\HostWorkspaceServicesExtensions.cs (1)
42
workspace.Services.SolutionServices.GetProjectServices(buffer.ContentType)?.
Language
: null;
Microsoft.CodeAnalysis.Features (2)
AddImport\AddImportOptions.cs (1)
28
MemberDisplayOptions = options.GetMemberDisplayOptions(languageServices.
Language
)
QuickInfo\QuickInfoServiceWithProviders.cs (1)
38
.Where(lz => lz.Metadata.Language == _services.
Language
))
Microsoft.CodeAnalysis.Remote.ServiceHub (3)
Services\ClientOptionsProvider.cs (2)
20
var lazyOptions = ImmutableInterlocked.GetOrAdd(ref _cache, languageServices.
Language
, _ => AsyncLazy.Create(
26
=> callback.InvokeAsync((callback, cancellationToken) => callback.GetOptionsAsync(callbackId, languageServices.
Language
, cancellationToken), cancellationToken).AsTask();
Services\SemanticSearch\RemoteSemanticSearchService.cs (1)
31
=> callback.InvokeAsync((callback, cancellationToken) => callback.GetClassificationOptionsAsync(callbackId, languageServices.
Language
, cancellationToken), cancellationToken);
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Options\OptionsProvider.cs (1)
24
=> ValueTaskFactory.FromResult(reader(optionsReader, languageServices.
Language
));
Workspace\Solution\DocumentState_LinkedFileReuse.cs (1)
185
if (siblingRoot.Language != languageServices.
Language
)