using System; using System.Xml; using System.Xml.Serialization; using System.Configuration; namespace blowery.Web.HttpModules { /// /// This class acts as a factory for the configuration settings. /// internal class HttpCompressionModuleSectionHandler : IConfigurationSectionHandler { /// /// Create a new config section handler. This is of type /// object IConfigurationSectionHandler.Create(object parent, object configContext, XmlNode configSection) { return new HttpCompressionModuleSettings(configSection); } } }