New test.
[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
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30 \r
31 using System;
32 #if (XML_DEP)
33 using System.Xml;
34 #endif\r
35
36 namespace System.Configuration\r
37 {\r
38         /// <summary>\r
39         /// Summary description for IgnoreSectionHandler.\r
40         /// </summary>\r
41         public class IgnoreSectionHandler : IConfigurationSectionHandler\r
42         {
43 #if (XML_DEP)
44                 /// <summary>\r
45                 ///             Creates a new configuration handler and adds the specified configuration object to the collection.\r
46                 /// </summary>\r
47                 /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>\r
48                 /// <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
49                 /// <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
50                 /// <returns></returns>\r
51                 public virtual object Create(object parent, object configContext, XmlNode section)\r
52                 {\r
53                         return null;\r
54                 }
55 #endif
56         }\r
57 }\r