| 1234567891011121314151617181920212223 |
- //
- // System.Data.Sql.Format
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- namespace System.Data.Sql {
- public enum Format
- {
- Unknown,
- UserDefined,
- Native,
- SerializedData,
- SerializedDataWithMetadata
- }
- }
- #endif
|