2003-11-09 Pedro Mart�nez Juli� <yoros@wanadoo.es>
[mono.git] / mcs / class / System.Data / System.Data / UpdateRowSource.cs
1 //
2 // System.Data.UpdateRowSource.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 query command results are applied to the row being updated.
16         /// </summary>
17         [Serializable]
18         public enum UpdateRowSource
19         {
20                 None = 0,
21                 OutputParameters = 1,
22                 FirstReturnedRecord = 2,
23                 Both = 3
24         }
25 }