From bf354de47edae70e74a284c9b410400386d34b13 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Fri, 29 Mar 2002 19:51:45 +0000 Subject: 2002-03-29 Rodrigo Moya * System.Data.Common/DbDataRecord.cs: * System.Data.Common/DbEnumerator.cs: * System.Data.Common/RowUpdatedEventArgs.cs: * System.Data.Common/RowUpdatingEventArgs.cs: * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons. svn path=/trunk/mcs/; revision=3503 --- .../System.Data.Common/RowUpdatingEventArgs.cs | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 mcs/class/System.Data/System.Data.Common/RowUpdatingEventArgs.cs (limited to 'mcs/class/System.Data/System.Data.Common/RowUpdatingEventArgs.cs') diff --git a/mcs/class/System.Data/System.Data.Common/RowUpdatingEventArgs.cs b/mcs/class/System.Data/System.Data.Common/RowUpdatingEventArgs.cs new file mode 100644 index 00000000000..6d5eae65d84 --- /dev/null +++ b/mcs/class/System.Data/System.Data.Common/RowUpdatingEventArgs.cs @@ -0,0 +1,58 @@ +// +// System.Data.Common.RowUpdatingEventArgs.cs +// +// Author: +// Rodrigo Moya (rodrigo@ximian.com) +// +// (C) Ximian, Inc +// + +namespace System.Data.Common +{ + /// + /// Provides the data for the RowUpdating event of a .NET data provider. + /// + public abstract class RowUpdatingEventArgs : EventArgs + { + [MonoTODO] + protected RowUpdatingEventArgs(DataRow dataRow, + IDbCommand command, + StatementType statementType, + DataTableMapping tableMapping) { + throw new NotImplementedException (); + } + + [MonoTODO] + public IDbCommand Command { + get { throw new NotImplementedException (); } + set { throw new NotImplementedException (); } + } + + [MonoTODO] + public Exception Errors { + get { throw new NotImplementedException (); } + set { throw new NotImplementedException (); } + } + + [MonoTODO] + public DataRow Row { + get { throw new NotImplementedException (); } + } + + [MonoTODO] + public StatementType StatementType { + get { throw new NotImplementedException (); } + } + + [MonoTODO] + public UpdateStatus Status { + get { throw new NotImplementedException (); } + set { throw new NotImplementedException (); } + } + + [MonoTODO] + public DataTableMapping TableMapping { + get { throw new NotImplementedException (); } + } + } +} -- cgit v1.2.3