// // System.Configuration.SingleTagSectionHandler.cs // // Author: // Christopher Podurgiel (cpodurgiel@msn.com) // // (C) Chris Podurgiel // using System; using System.Xml; namespace System.Configuration { /// /// Summary description for SingleTagSectionHandler. /// public class SingleTagSectionHandler : IConfigurationSectionHandler { public SingleTagSectionHandler() { // // TODO: Add constructor logic here // } /// /// Returns a collection of configuration section values. /// /// /// /// The name of the configuration section. /// public object Create(object parent, object context, XmlNode section) { //FIXME: Add Implemetation code here. return null; } } }