2003-11-25 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Data / System.Data / CommandType.cs
1 //
2 // System.Data.CommandType.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Specifies how a command string is interpreted.
16         /// </summary>
17         [Serializable]
18         public enum CommandType
19         {
20                 Text = 1,
21                 StoredProcedure = 4,
22                 TableDirect = 512
23                 
24         }
25 }