6 implementations of Type
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
Completion\CompletionServiceTests.cs (1)
93public Type Type => typeof(int);
Microsoft.CodeAnalysis.Workspaces (4)
Options\Option.cs (1)
27public Type Type => _optionDefinition.Type;
Options\PerLanguageOption.cs (1)
23public Type Type => _optionDefinition.Type;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\Option2.cs (1)
86Type IOption.Type => Definition.Type;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\PerLanguageOption2.cs (1)
74Type IOption.Type => Definition.Type;
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (1)
Options\TestOption.cs (1)
15public Type Type { get; set; } = typeof(int);
8 references to Type
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Handler\Configuration\DidChangeConfigurationNotificationHandler.cs (1)
104_lspLogger.LogWarning($"Failed to parse '{valueFromClient}' to type: '{option.Type.Name}'. '{option.Name}' would not be updated.");
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
Configuration\DidChangeConfigurationNotificationHandlerTest.cs (1)
262var type = option.Type;
Microsoft.CodeAnalysis.Workspaces (3)
Options\DocumentOptionSet.cs (1)
78Contract.ThrowIfTrue(internallyDefinedOption.Type == typeof(NamingStylePreferences));
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Options\PublicOptionFactory.cs (2)
128equals = Equals(x.DefaultValue, y.DefaultValue) && x.Type == y.Type;
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (1)
UnifiedSettings\CSharpUnifiedSettingsTests.cs (1)
41var allValues = Enum.GetValues(option.Type).Cast<object>();
Roslyn.VisualStudio.DiagnosticsWindow (2)
OptionPages\InternalOptionsControl.cs (2)
150if (option.Type == typeof(bool)) 157if (option.Type == typeof(int))