NewGaoKaoApi/New_College.Extensions/ServiceExtensions/HttpContextExtension.cs

19 lines
348 B
C#

using System;
using Microsoft.AspNetCore.Http;
namespace New_College.Extensions;
public static class HttpContextExtension
{
public static ISession GetSession(this HttpContext context)
{
try
{
return context.Session;
}
catch (Exception)
{
return default;
}
}
}