ParameterDirection.cs 353 B

12345678910111213141516171819202122
  1. //
  2. // System.Data.ParameterDirection.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies the type of a parameter within a query relative to the DataSet.
  13. /// </summary>
  14. public enum ParameterDirection
  15. {
  16. Input,
  17. InputOutput,
  18. Output,
  19. ReturnValue
  20. }
  21. }