ConfigHandler.cs 415 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. /// <summary>
  6. /// Config 的摘要说明
  7. /// </summary>
  8. ///
  9. namespace LYFZ.WanYuKeFuData.UEditControl
  10. {
  11. public class ConfigHandler : Handler
  12. {
  13. public ConfigHandler(HttpContext context) : base(context) { }
  14. public override void Process()
  15. {
  16. WriteJson(Config.Items);
  17. }
  18. }
  19. }