SchemaSerializationMode.cs 677 B

123456789101112131415
  1. //------------------------------------------------------------------------------
  2. // <copyright file="SchemaSerializationMode.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. public enum SchemaSerializationMode {
  10. IncludeSchema = (1 << 0), // 1 0x01
  11. ExcludeSchema = (1 << 1), // 2 0x02
  12. }
  13. }