ConfigHandler.cs 332 B

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