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

◆ RowFilter

string System.Data.DataViewSetting.RowFilter
getset

Definition at line 42 of file DataViewSetting.cs.

43 {
44 get
45 {
46 return _rowFilter;
47 }
48 [RequiresUnreferencedCode("Members of types used in the filter expression might be trimmed.")]
49 [param: AllowNull]
50 set
51 {
52 if (value == null)
53 {
54 value = string.Empty;
55 }
56 if (_rowFilter != value)
57 {
59 }
60 }
61 }