2004-03-15 Umadevi S (sumadevi@novell.com)
[mono.git] / mcs / class / System.Data / System.Data / StatementCompletedEventArgs.cs
1 //
2 // System.Data.StatementCompletedEventArgs.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 namespace System.Data {
13         public class StatementCompletedEventArgs : EventArgs
14         {
15                 #region Fields
16
17                 int recordCount;
18
19                 #endregion // Fields
20
21                 #region Constructors
22
23                 public StatementCompletedEventArgs (int recordCount)
24                 {
25                         this.recordCount = recordCount;
26                 }
27
28                 #endregion // Constructors
29
30                 #region Properties
31
32                 public int RecordCount {
33                         get { return recordCount; }
34                 }
35
36                 #endregion // Properties
37         }
38 }
39
40 #endif // NET_1_2