DataSerializationFormat.cs 537 B

123456789101112131415
  1. //------------------------------------------------------------------------------
  2. // <copyright file="DataSerializationFormat.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 SerializationFormat {
  10. Xml = 0,
  11. Binary = 1
  12. }
  13. }