| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // System.Data.SqlClient.SqlRowUpdatingEventArgs.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc 2002
- //
- using System;
- using System.Data;
- using System.Data.Common;
- namespace System.Data.SqlClient
- {
- public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs
- {
- [MonoTODO]
- public SqlRowUpdatingEventArgs( DataRow row,
- IDbCommand command, StatementType statementType,
- DataTableMapping tableMapping) {
- // FIXME: do the constructor
- }
- [MonoTODO]
- public new SqlCommand Command {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- ~SqlRowUpdatingEventArgs() {
- // FIXME: create destructor to release resources
- }
- }
- }
|