3 instantiations of TraceValue
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Protocol\TraceValue.cs (3)
21public static readonly TraceValue Off = new("off"); 22public static readonly TraceValue Messages = new("messages"); 23public static readonly TraceValue Verbose = new("verbose");
7 references to TraceValue
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
Protocol\LogTraceParams.cs (1)
25/// is set to <see cref="TraceValue.Verbose"/>.
Protocol\SetTraceParams.cs (1)
22public TraceValue Value { get; init; }
Protocol\TraceValue.cs (5)
17[JsonConverter(typeof(StringEnumConverter<TraceValue>))] 18[TypeConverter(typeof(StringEnumConverter<TraceValue>.TypeConverter))] 21public static readonly TraceValue Off = new("off"); 22public static readonly TraceValue Messages = new("messages"); 23public static readonly TraceValue Verbose = new("verbose");