Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Data/System.Data.Common/RowUpdatedEventArgs.cs')
-rw-r--r--mcs/class/System.Data/System.Data.Common/RowUpdatedEventArgs.cs64
1 files changed, 0 insertions, 64 deletions
diff --git a/mcs/class/System.Data/System.Data.Common/RowUpdatedEventArgs.cs b/mcs/class/System.Data/System.Data.Common/RowUpdatedEventArgs.cs
deleted file mode 100644
index ab3aebe4451..00000000000
--- a/mcs/class/System.Data/System.Data.Common/RowUpdatedEventArgs.cs
+++ /dev/null
@@ -1,64 +0,0 @@
-//
-// System.Data.Common.RowUpdatedEventArgs.cs
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-//
-// (C) Ximian, Inc
-//
-
-using System.Data;
-
-namespace System.Data.Common
-{
- /// <summary>
- /// Provides data for the RowUpdated event of a .NET data provider.
- /// </summary>
- public abstract class RowUpdatedEventArgs : EventArgs
- {
- [MonoTODO]
- protected RowUpdatedEventArgs(DataRow dataRow,
- IDbCommand command,
- StatementType statementType,
- DataTableMapping tableMapping) {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public IDbCommand Command {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public Exception Errors {
- get { throw new NotImplementedException (); }
- set { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- public int RecordsAffected {
- get { 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 (); }
- }
- }
-}