You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
354 B

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