YD_SmartSports.Api/VOL.Core/Extensions/ServiceProviderManagerExtension.cs

13 lines
379 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using System;
namespace VOL.Core.Extensions
{
public static class ServiceProviderManagerExtension
{
public static object GetService(this Type serviceType)
{
// HttpContext.Current.RequestServices.GetRequiredService<T>(serviceType);
return Utilities.HttpContext.Current.RequestServices.GetService(serviceType);
}
}
}