mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-04 00:35:47 +08:00
14 lines
337 B
C#
14 lines
337 B
C#
using System.Security.Claims;
|
|
|
|
namespace Yi.Framework.Infrastructure.CurrentUsers.Accessor
|
|
{
|
|
public class ThreadCurrentPrincipalAccessor : CurrentPrincipalAccessorBase
|
|
{
|
|
protected override ClaimsPrincipal GetClaimsPrincipal()
|
|
{
|
|
return Thread.CurrentPrincipal as ClaimsPrincipal;
|
|
}
|
|
}
|
|
|
|
}
|