Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ RowFilter

override string System.Data.LinqDataView.RowFilter
getset

Definition at line 14 of file LinqDataView.cs.

15 {
16 get
17 {
18 if (base.RowPredicate == null)
19 {
20 return base.RowFilter;
21 }
22 return null;
23 }
24 [RequiresUnreferencedCode("Members of types used in the filter expression might be trimmed.")]
25 set
26 {
27 if (value == null)
28 {
29 base.RowPredicate = null;
30 base.RowFilter = string.Empty;
31 }
32 else
33 {
34 base.RowFilter = value;
35 base.RowPredicate = null;
36 }
37 }
38 }