raise OnDataSourceViewChanged events when data changes
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / DetailsViewInsertEventArgs.cs
index 4e8a638f644930f7383e8a5dbf536366e122a6e3..2f36a58581996789db25286c61afbfad5db57a7d 100644 (file)
@@ -38,18 +38,25 @@ namespace System.Web.UI.WebControls
        public class DetailsViewInsertEventArgs : CancelEventArgs
        {
                private object argument;
+               private IOrderedDictionary values;
                
                public DetailsViewInsertEventArgs (object argument)
                {
                        this.argument = argument;
                }
                
+               internal DetailsViewInsertEventArgs (object argument, IOrderedDictionary values)
+               {
+                       this.argument = argument;
+                       this.values = values;
+               }
+               
                public object CommandArgument {
                        get { return argument; }
                }
 
                public IOrderedDictionary Values {
-                       get { throw new NotImplementedException(); }
+                       get { return values; }
                }
        }
 }