MissingMappingAction.cs 570 B

12345678910111213141516
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MissingMappingAction.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 MissingMappingAction {
  10. Passthrough = 1,
  11. Ignore = 2,
  12. Error = 3,
  13. }
  14. }