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

◆ CatalogLocation

virtual CatalogLocation System.Data.Common.DbCommandBuilder.CatalogLocation
getset

Definition at line 289 of file DbCommandBuilder.cs.

290 {
291 get
292 {
293 return _catalogLocation;
294 }
295 set
296 {
297 if (_dbSchemaTable != null)
298 {
299 throw ADP.NoQuoteChange();
300 }
301 if ((uint)(value - 1) <= 1u)
302 {
304 return;
305 }
306 throw ADP.InvalidCatalogLocation(value);
307 }
308 }

Referenced by System.Data.Common.DbCommandBuilder.BuildInformation().