3 instantiations of VSInternalDiagnosticKind
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Protocol\Internal\Diagnostics\VSInternalDiagnosticKind.cs (3)
20public static readonly VSInternalDiagnosticKind Task = new("task"); 25public static readonly VSInternalDiagnosticKind EditAndContinue = new("enc"); 30public static readonly VSInternalDiagnosticKind Syntax = new("syntax");
10 references to VSInternalDiagnosticKind
Microsoft.CodeAnalysis.LanguageServer.Protocol (10)
Handler\Diagnostics\PullDiagnosticCategories.cs (2)
14public static readonly string Task = VSInternalDiagnosticKind.Task.Value; 19public static readonly string EditAndContinue = VSInternalDiagnosticKind.EditAndContinue.Value;
Protocol\Internal\Diagnostics\VSInternalDiagnosticKind.cs (5)
13[JsonConverter(typeof(StringEnumConverter<VSInternalDiagnosticKind>))] 14[TypeConverter(typeof(StringEnumConverter<VSInternalDiagnosticKind>.TypeConverter))] 20public static readonly VSInternalDiagnosticKind Task = new("task"); 25public static readonly VSInternalDiagnosticKind EditAndContinue = new("enc"); 30public static readonly VSInternalDiagnosticKind Syntax = new("syntax");
Protocol\Internal\Diagnostics\VSInternalDiagnosticOptions.cs (1)
30public VSInternalDiagnosticKind[]? DiagnosticKinds { get; init; }
Protocol\Internal\Diagnostics\VSInternalDiagnosticParams.cs (1)
26public VSInternalDiagnosticKind? QueryingDiagnosticKind { get; set; }
Protocol\Internal\Diagnostics\VSInternalWorkspaceDiagnosticsParams.cs (1)
37public VSInternalDiagnosticKind? QueryingDiagnosticKind { get; set; }