aspnetcore/src/Microsoft.AspNetCore.Http/Features/Authentication/HttpAuthenticationFeature.cs

27 lines
607 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Security.Claims;
namespace Microsoft.AspNet.Http.Features.Authentication.Internal
{
public class HttpAuthenticationFeature : IHttpAuthenticationFeature
{
public HttpAuthenticationFeature()
{
}
public ClaimsPrincipal User
{
get;
set;
}
public IAuthenticationHandler Handler
{
get;
set;
}
}
}