2004-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / SqlDataSourceCommandEventArgs.cs
1 //
2 // System.Web.UI.WebControls.SqlDataSourceCommandEventArgs
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
8 //
9
10 #if NET_2_0
11 using System.Collections;
12 using System.Collections.Specialized;
13 using System.Text;
14 using System.Data;
15 using System.ComponentModel;
16
17 namespace System.Web.UI.WebControls {
18         public class SqlDataSourceCommandEventArgs : CancelEventArgs {
19                 
20                 public SqlDataSourceCommandEventArgs (IDbCommand command)
21                 {
22                         this.command = command;
23                 }
24                 
25                 IDbCommand command;
26                 public IDbCommand Command {
27                         get { return command; }
28                 }
29         }
30 }
31 #endif
32