Asp Core custom session
public class CustomSession : ISession { private readonly IDistributedCache cache; private readonly string sessionKey; private readonly string sessionId; private Dictionary<string, byte[]> data; public bool IsAvailable { get; set; }
public string Id =...
tandan.hashnode.dev2 min read