2001-08-24 Christopher Podurgiel <cpodurgiel@msn.com>
[mono.git] / mcs / class / System / System.Configuration / SingleTagSectionHandler.cs
1 //\r
2 // System.Configuration.SingleTagSectionHandler.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 \r
14 namespace System.Configuration\r
15 {\r
16         /// <summary>\r
17         /// Summary description for SingleTagSectionHandler.\r
18         /// </summary>\r
19         public class SingleTagSectionHandler : IConfigurationSectionHandler\r
20         {\r
21 \r
22                 public SingleTagSectionHandler()\r
23                 {\r
24                         //\r
25                         // TODO: Add constructor logic here\r
26                         //\r
27                 }\r
28 \r
29                 /// <summary>\r
30                 ///             Returns a collection of configuration section values.\r
31                 /// </summary>\r
32                 /// <param name="parent"></param>\r
33                 /// <param name="context"></param>\r
34                 /// <param name="section">The name of the configuration section.</param>\r
35                 /// <returns></returns>\r
36                 public object Create(object parent, object context, XmlNode section)\r
37                 {\r
38                         //FIXME: Add Implemetation code here.\r
39                         return null;\r
40                 }\r
41         }\r
42 }\r