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/Mono.Data.PostgreSqlClient/PgSqlRowUpdatedEventArgs.cs')
-rw-r--r--mcs/class/Mono.Data.PostgreSqlClient/PgSqlRowUpdatedEventArgs.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/mcs/class/Mono.Data.PostgreSqlClient/PgSqlRowUpdatedEventArgs.cs b/mcs/class/Mono.Data.PostgreSqlClient/PgSqlRowUpdatedEventArgs.cs
deleted file mode 100644
index dbc5789aa95..00000000000
--- a/mcs/class/Mono.Data.PostgreSqlClient/PgSqlRowUpdatedEventArgs.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// System.Data.SqlClient.SqlRowUpdatedEventArgs.cs
-//
-// Author:
-// Rodrigo Moya (rodrigo@ximian.com)
-// Daniel Morgan (danmorg@sc.rr.com)
-//
-// (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)
- : base (row, command, statementType, tableMapping)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public new SqlCommand Command {
- get { throw new NotImplementedException (); }
- }
-
- [MonoTODO]
- ~SqlRowUpdatedEventArgs ()
- {
- throw new NotImplementedException ();
- }
-
- }
-}