15 lines
410 B
C#
15 lines
410 B
C#
using System.Collections.Generic;
|
|
using System.Security.Claims;
|
|
using Microsoft.AspNet.HttpFeature.Security;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Microsoft.AspNet.Interfaces.Security
|
|
{
|
|
public interface IAuthenticationResult
|
|
{
|
|
ClaimsIdentity Identity { get; }
|
|
IDictionary<string, object> Properties { get; }
|
|
IAuthenticationDescription Description { get; }
|
|
}
|
|
}
|