CommandType.cs 305 B

123456789101112131415161718192021
  1. //
  2. // System.Data.CommandType.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Specifies how a command string is interpreted.
  13. /// </summary>
  14. public enum CommandType
  15. {
  16. StoredProcedure,
  17. TableDirect,
  18. Text
  19. }
  20. }