// // System.Data.MissingSchemaAction.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // namespace System.Data { /// /// Specifies the action to take when adding data to the DataSet and the required DataTable or DataColumn is missing. /// public enum MissingSchemaAction { Add, AddWithKey, Error, Ignore } }