configsectionhandler.cs
来自「全功能c#编译器」· 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 + -
显示快捷键?