2004-05-15 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data / MissingMappingAction.cs
1 //
2 // System.Data.MissingMappingAction.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 using System;
11
12 namespace System.Data
13 {
14         /// <summary>
15         /// Determines the action that occurs when a mapping is missing from a source table or a source column.
16         /// </summary>
17         [Serializable]
18         public enum MissingMappingAction
19         {
20                 Passthrough = 1,
21                 Ignore = 2,
22                 Error = 3
23         }
24 }