2003-12-19 Tim Coleman <tim@timcoleman.com>
[mono.git] / mcs / class / System.Data / System.Data.Sql / SqlTriggerContextBase.cs
1 //
2 // System.Data.Sql.SqlTriggerContextBase
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_1_2
11
12 using System;
13 using System.Data.SqlTypes;
14
15 namespace System.Data.Sql {
16         public abstract class SqlTriggerContextBase
17         {
18                 #region Constructors
19
20                 protected SqlTriggerContextBase ()
21                 {
22                 }
23
24                 #endregion // Constructors
25
26                 #region Properties
27
28                 public abstract bool[] ColumnsUpdated { get; }
29                 public abstract SqlChars EventData { get; }
30                 public abstract TriggerAction TriggerAction { get; }
31
32                 #endregion // Properties
33         }
34 }
35
36 #endif