2009-02-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Web.Extensions / System.Web.UI.WebControls / ListViewUpdatedEventArgs.cs
1 //
2 // System.Web.UI.WebControls.ListView
3 //
4 // Authors:
5 //   Marek Habersack (mhabersack@novell.com)
6 //
7 // (C) 2007-2008 Novell, Inc
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 #if NET_3_5
31 using System;
32 using System.Collections.Specialized;
33
34 namespace System.Web.UI.WebControls
35 {
36         public class ListViewUpdatedEventArgs : EventArgs
37         {
38                 IOrderedDictionary _newValues;
39                 IOrderedDictionary _oldValues;
40
41                 internal ListViewUpdatedEventArgs (int affectedRows, Exception exception, IOrderedDictionary newValues, IOrderedDictionary oldValues)
42                         : this (affectedRows, exception)
43                 {
44                         _newValues = newValues;
45                         _oldValues = oldValues;
46                 }
47                 
48                 public ListViewUpdatedEventArgs (int affectedRows, Exception exception)
49                 {
50                         AffectedRows = affectedRows;
51                         Exception = exception;
52                         ExceptionHandled = false;
53                         KeepInEditMode = false;
54                 }
55                 
56                 public int AffectedRows {
57                         get;
58                         private set;
59                 }
60                 
61                 public Exception Exception {
62                         get;
63                         private set;
64                 }
65                 
66                 public bool ExceptionHandled {
67                         get;
68                         set;
69                 }
70                 
71                 public bool KeepInEditMode {
72                         get;
73                         set;
74                 }
75                 
76                 public IOrderedDictionary NewValues {
77                         get {
78                                 if (_newValues == null)
79                                         _newValues = new OrderedDictionary ();
80                                 return _newValues;
81                         }
82                 }
83                 
84                 public IOrderedDictionary OldValues {
85                         get {
86                                 if (_oldValues == null)
87                                         _oldValues = new OrderedDictionary ();
88                                 return _newValues;
89                         }
90                 }
91         }
92 }
93 #endif