We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81989b1 commit f5c3651Copy full SHA for f5c3651
src/shared/Core/Trace2.cs
@@ -31,12 +31,19 @@ public enum Trace2ProcessClass
31
Other = 3
32
}
33
34
+/// <summary>
35
+/// Stores various TRACE2 format targets user has enabled.
36
+/// Check <see cref="Trace2FormatTarget"/> for supported formats.
37
+/// </summary>
38
public class Trace2Settings
39
{
40
public IDictionary<Trace2FormatTarget, string> FormatTargetsAndValues { get; set; } =
41
new Dictionary<Trace2FormatTarget, string>();
42
43
44
45
+/// Specifies a "text span" (i.e. space between two pipes) for the performance format target.
46
47
public class PerformanceFormatSpan
48
49
public int Size { get; set; }
0 commit comments