| 12345678910111213141516171819202122 |
- //
- // System.Data.MappingType.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies how a DataColumn is mapped.
- /// </summary>
- public enum MappingType
- {
- Attribute,
- Element,
- Hidden,
- SimpleContent
- }
- }
|