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

◆ FillLoadOption

LoadOption System.Data.Common.DataAdapter.FillLoadOption
getsetinherited

Definition at line 78 of file DataAdapter.cs.

79 {
80 get
81 {
82 if (_fillLoadOption == (LoadOption)0)
83 {
84 return LoadOption.OverwriteChanges;
85 }
86 return _fillLoadOption;
87 }
88 [RequiresUnreferencedCode("Using LoadOption may cause members from types used in the expression column to be trimmed if not referenced directly.")]
89 set
90 {
91 if ((uint)value <= 3u)
92 {
94 return;
95 }
96 throw ADP.InvalidLoadOption(value);
97 }
98 }

Referenced by System.Data.ProviderBase.SchemaMapping.SchemaMapping().