SqlDataSourceCommandEventArgs.cs 596 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Web.UI.WebControls.SqlDataSourceCommandEventArgs
  3. //
  4. // Authors:
  5. // Ben Maurer ([email protected])
  6. //
  7. // (C) 2003 Ben Maurer
  8. //
  9. #if NET_1_2
  10. using System.Collections;
  11. using System.Collections.Specialized;
  12. using System.Text;
  13. using System.Data;
  14. using System.ComponentModel;
  15. namespace System.Web.UI.WebControls {
  16. public class SqlDataSourceCommandEventArgs : CancelEventArgs {
  17. public SqlDataSourceCommandEventArgs (IDbCommand command)
  18. {
  19. this.command = command;
  20. }
  21. IDbCommand command;
  22. public IDbCommand Command {
  23. get { return command; }
  24. }
  25. }
  26. }
  27. #endif