ParameterDirection.cs 594 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ParameterDirection.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 ParameterDirection {
  10. Input = 1,
  11. Output = 2,
  12. InputOutput = 3,
  13. ReturnValue = 6
  14. }
  15. }