| 123456789101112131415161718192021 |
- //
- // System.Data.XmlWriteMode.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Use the members of this enumeration when setting the WriteMode parameter of the WriteXml method.
- /// </summary>
- public enum XmlWriteMode
- {
- DiffGram,
- IgnoreSchema,
- WriteSchema
- }
- }
|