| 123456789101112131415161718192021 |
- //
- // System.Data.CommandType.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Specifies how a command string is interpreted.
- /// </summary>
- public enum CommandType
- {
- StoredProcedure,
- TableDirect,
- Text
- }
- }
|