2003-11-09 Pedro Mart�nez Juli� <yoros@wanadoo.es>
[mono.git] / mcs / class / System.Data / System.Data / ParameterDirection.cs
1 //
2 // System.Data.ParameterDirection.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 the type of a parameter within a query relative to the DataSet.
16         /// </summary>
17         [Serializable]
18         public enum ParameterDirection
19         {
20                 Input = 1,
21                 Output = 2,
22                 InputOutput = 3,
23                 ReturnValue = 6
24         }
25 }