Skip to content

Commit 011c832

Browse files
authored
Default TableConfiguration.InitialFilterShouldKeep to true (#179)
* Default TableConfiguraiton.InitialFilterShouldKeep to true * Update docstring
1 parent 0d695ac commit 011c832

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Microsoft.Performance.SDK/Processing/TableConfiguration.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,11 @@ public TableConfiguration(string name)
116116
public string InitialSelectionQuery { get; set; }
117117

118118
/// <summary>
119-
/// Get or sets whether the initial filter should be kept in this table.
119+
/// Get or sets whether rows that satisfy <see cref="InitialFilterQuery"/> should be
120+
/// kept or removed from the table (i.e. whether <see cref="InitialFilterQuery"/> is a
121+
/// "filter-in" or "filter-out" filter). Defaults to <c>true</c>.
120122
/// </summary>
121-
public bool InitialFilterShouldKeep { get; set; }
123+
public bool InitialFilterShouldKeep { get; set; } = true;
122124

123125
/// <summary>
124126
/// Gets or sets the top value of the graph filter in this value.

0 commit comments

Comments
 (0)