configurationsectionhandler.cs
来自「ASP.NET简洁论坛源代码 这是一个简单的论坛」· CS 代码 · 共 23 行
CS
23 行
using System;
using System.Configuration;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.IO;
using System.Web;
using System.Web.Caching;
using System.Xml;
using System.Xml.Serialization;
using System.Data;
using System.Data.SqlClient;
namespace NetFocus.Web.Applications.Forum
{
public class ConfigurationSectionHandler : IConfigurationSectionHandler
{
public object Create(object parent, object configContext, XmlNode section)
{
return section;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?