| 1234567891011121314151617181920 |
- //
- // System.Data.SchemaType.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies how to handle existing schema mappings when performing a FillSchema operation.
- /// </summary>
- public enum SchemaType
- {
- Mapped,
- Source
- }
- }
|