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

◆ RelatedView() [1/2]

System.Data.RelatedView.RelatedView ( DataColumn[] columns,
object[] values )
inline

Definition at line 15 of file RelatedView.cs.

16 : base(columns[0].Table, locked: false)
17 {
18 if (values == null)
19 {
20 throw ExceptionBuilder.ArgumentNull("values");
21 }
22 _parentRowView = null;
23 _parentKey = null;
24 _childKey = new DataKey(columns, copyColumns: true);
27 }
readonly? DataKey _parentKey
Definition RelatedView.cs:7
readonly DataRowView _parentRowView
readonly object[] _filterValues
readonly DataKey _childKey
Definition RelatedView.cs:9

References System.Data.RelatedView._childKey, System.Data.RelatedView._filterValues, System.Data.RelatedView._parentKey, System.Data.RelatedView._parentRowView, System.Data.ExceptionBuilder.ArgumentNull(), System.Data.DataView.ResetRowViewCache(), and System.values.