Duplex client has its own listener loop, so special care on reply is needed.
[mono.git] / mcs / class / System.Data / System.Data.SqlClient / SqlRowUpdatingEventArgs.cs
1 //
2 // System.Data.SqlClient.SqlRowUpdatingEventArgs.cs
3 //
4 // Author:
5 //   Rodrigo Moya (rodrigo@ximian.com)
6 //   Daniel Morgan (danmorg@sc.rr.com)
7 //   Tim Coleman (tim@timcoleman.com)
8 //   Umadevi S (sumadevi@novell.com)
9 //
10 // (C) Ximian, Inc 2002
11 // Copyright (C) Tim Coleman, 2002
12 //
13
14 //
15 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
16 //
17 // Permission is hereby granted, free of charge, to any person obtaining
18 // a copy of this software and associated documentation files (the
19 // "Software"), to deal in the Software without restriction, including
20 // without limitation the rights to use, copy, modify, merge, publish,
21 // distribute, sublicense, and/or sell copies of the Software, and to
22 // permit persons to whom the Software is furnished to do so, subject to
23 // the following conditions:
24 // 
25 // The above copyright notice and this permission notice shall be
26 // included in all copies or substantial portions of the Software.
27 // 
28 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
33 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
34 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35 //
36
37 using System;
38 using System.Data;
39 using System.Data.Common;
40
41 namespace System.Data.SqlClient {
42         public sealed class SqlRowUpdatingEventArgs : RowUpdatingEventArgs
43         {
44                 #region Constructors
45
46                 public SqlRowUpdatingEventArgs (DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping) 
47                         : base (row, command, statementType, tableMapping)
48                 {
49                 }
50
51                 #endregion // Constructors
52
53                 #region Properties
54
55                 public new SqlCommand Command {
56                         get { return (SqlCommand) base.Command; }
57                         set { base.Command = value; }
58                 }
59
60                 #if NET_2_0
61                         
62                 protected override IDbCommand BaseCommand {
63                         get {
64                                 return base.BaseCommand;
65                         }
66                         set {
67                                 base.BaseCommand = value as SqlCommand;
68                         }
69                         
70
71                 }       
72                 
73
74                 #endif
75
76                 #endregion // Properties
77         }
78 }