ConfigHandler.cs 340 B

1234567891011121314151617
  1. using System.Web;
  2. namespace SiteCore.ueditor
  3. {
  4. /// <summary>
  5. /// Config 的摘要说明
  6. /// </summary>
  7. public class ConfigHandler : Handler
  8. {
  9. public ConfigHandler(HttpContext context) : base(context) { }
  10. public override void Process()
  11. {
  12. WriteJson(Config.Items);
  13. }
  14. }
  15. }