Skip to content

Commit f5c3651

Browse files
committed
trace2: add comments
Add descriptive comments to Trace2-related classes that currently do not have any.
1 parent 81989b1 commit f5c3651

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/shared/Core/Trace2.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,19 @@ public enum Trace2ProcessClass
3131
Other = 3
3232
}
3333

34+
/// <summary>
35+
/// Stores various TRACE2 format targets user has enabled.
36+
/// Check <see cref="Trace2FormatTarget"/> for supported formats.
37+
/// </summary>
3438
public class Trace2Settings
3539
{
3640
public IDictionary<Trace2FormatTarget, string> FormatTargetsAndValues { get; set; } =
3741
new Dictionary<Trace2FormatTarget, string>();
3842
}
3943

44+
/// <summary>
45+
/// Specifies a "text span" (i.e. space between two pipes) for the performance format target.
46+
/// </summary>
4047
public class PerformanceFormatSpan
4148
{
4249
public int Size { get; set; }

0 commit comments

Comments
 (0)