configsectionhandler.cs

来自「SharpZipLib之前叫做NZipLib」· CS 代码 · 共 23 行

CS
23
字号
using System;
using System.Xml;
using System.Xml.Serialization;
using System.Configuration;

namespace blowery.Web.HttpModules
{
	/// <summary>
	/// This class acts as a factory for the configuration settings.
	/// </summary>
	internal class HttpCompressionModuleSectionHandler : IConfigurationSectionHandler
	{
    
    /// <summary>
    /// Create a new config section handler.  This is of type <see cref="HttpCompressionModuleSettings"/>
    /// </summary>
    object IConfigurationSectionHandler.Create(object parent, object configContext, XmlNode configSection) {
      return new HttpCompressionModuleSettings(configSection);
    }
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?