| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // System.Data.SqlClient.SqlRowUpdatedEventArgs.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 SqlRowUpdatedEventArgs : RowUpdatedEventArgs {
-
- [MonoTODO]
- public SqlRowUpdatedEventArgs (DataRow row,
- IDbCommand command, StatementType statementType,
- DataTableMapping tableMapping) {
- // FIXME: do the constructor
- }
- [MonoTODO]
- public new SqlCommand Command {
- get {
-
- }
- }
- [MonoTODO]
- ~SqlRowUpdatedEventArgs () {
- // FIXME: need destructor to release resources
- }
- }
- }
|