您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

LuUtilsExtensions.cs 364B

12345678910111213
  1. using System.Collections.Generic;
  2. using Microsoft.AspNetCore.Http;
  3. namespace Luticate2.Utils.Controllers
  4. {
  5. public static class LuControllerUtilsExtensions
  6. {
  7. public static IDictionary<object, object> GetLuItems(this HttpContext context)
  8. {
  9. return (IDictionary<object, object>) context.Items["luticateItems"];
  10. }
  11. }
  12. }