2004-06-08 Umadevi S <sumadevi@novell.com>
[mono.git] / mcs / class / System.Data / System.Data.Common / DbProviderFactoriesConfigurationHandler.cs
1 //
2 // System.Data.Common.DbProviderFactoriesConfigurationHandler.cs
3 //
4 // Author:
5 //   Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2003
8 //
9
10 #if NET_2_0
11
12 using System.Configuration;
13 using System.Xml;
14
15 namespace System.Data.Common {
16         public class DbProviderFactoriesConfigurationHandler : IConfigurationSectionHandler
17         {
18                 #region Constructors
19
20                 [MonoTODO]
21                 public DbProviderFactoriesConfigurationHandler ()
22                 {
23                 }
24
25                 #endregion // Constructors
26
27                 #region Methods
28
29                 [MonoTODO]
30                 public virtual object Create (object parent, object configContext, XmlNode section)
31                 {
32                         throw new NotImplementedException ();
33                 }
34
35                 #endregion // Methods
36         }
37 }
38
39 #endif // NET_2_0