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