Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Configuration/IConfigurationSectionHandler.cs')
-rw-r--r--mcs/class/System/System.Configuration/IConfigurationSectionHandler.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/mcs/class/System/System.Configuration/IConfigurationSectionHandler.cs b/mcs/class/System/System.Configuration/IConfigurationSectionHandler.cs
deleted file mode 100644
index d3eae0ad018..00000000000
--- a/mcs/class/System/System.Configuration/IConfigurationSectionHandler.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// System.Configuration.IConfigurationSectionHandler.cs
-//
-// Author:
-// Christopher Podurgiel (cpodurgiel@msn.com)
-//
-// (C) Chris Podurgiel
-//
-using System;
-using System.Xml;
-namespace System.Configuration
-{
- /// <summary>
- /// Summary description for IConfigurationSectionHandler.
- /// </summary>
- public interface IConfigurationSectionHandler
- {
- /// <summary>
- /// Creates a new configuration handler and adds the specified configuration object to the collection.
- /// </summary>
- /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>
- /// <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>
- /// <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>
- /// <returns></returns>
- object Create(object parent, object configContext, XmlNode section);
- }
-}