2001-08-24 Christopher Podurgiel <cpodurgiel@msn.com>
[mono.git] / mcs / class / System / System.Configuration / IgnoreSectionHandler.cs
1 //\r
2 // System.Configuration.IgnoreSectionHandler.cs\r
3 //\r
4 // Author:\r
5 //   Christopher Podurgiel (cpodurgiel@msn.com)\r
6 //\r
7 // (C) Chris Podurgiel\r
8 //\r
9 \r
10 using System;\r
11 using System.Xml;\r
12 \r
13 namespace System.Configuration\r
14 {\r
15         /// <summary>\r
16         /// Summary description for IgnoreSectionHandler.\r
17         /// </summary>\r
18         public class IgnoreSectionHandler : IConfigurationSectionHandler\r
19         {\r
20                 /// <summary>\r
21                 ///             IgnoreSectionHandler Constructor\r
22                 /// </summary>\r
23                 public IgnoreSectionHandler()\r
24                 {\r
25                         //\r
26                         // TODO: Add constructor logic here\r
27                         //\r
28                 }\r
29 \r
30                 /// <summary>\r
31                 ///             Creates a new configuration handler and adds the specified configuration object to the collection.\r
32                 /// </summary>\r
33                 /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>\r
34                 /// <param name="configContext">Provides access to the virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is null.</param>\r
35                 /// <param name="section">The XML node that contains the configuration information to be handled. section provides direct access to the XML contents of the configuration section.</param>\r
36                 /// <returns></returns>\r
37                 public virtual object Create(object parent, object configContext, XmlNode section)\r
38                 {\r
39                         //FIXME: Add Implemetation code here.\r
40                         return null;\r
41                 }\r
42         }\r
43 }\r