| 12345678910111213141516171819202122 |
- //
- // System.Data.MissingSchemaAction.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies the action to take when adding data to the DataSet and the required DataTable or DataColumn is missing.
- /// </summary>
- public enum MissingSchemaAction
- {
- Add,
- AddWithKey,
- Error,
- Ignore
- }
- }
|