54 lines
1.7 KiB
C#
54 lines
1.7 KiB
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;
|
|
using System.Security.Claims;
|
|
|
|
namespace Microsoft.AspNetCore.Identity
|
|
{
|
|
/// <summary>
|
|
/// Represents a claim that a user possesses.
|
|
/// </summary>
|
|
/// <typeparam name="TKey">The type used for the primary key for this user that possesses this claim.</typeparam>
|
|
public class IdentityUserClaim<TKey> where TKey : IEquatable<TKey>
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the identifier for this user claim.
|
|
/// </summary>
|
|
public virtual int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the primary key of the user associated with this claim.
|
|
/// </summary>
|
|
public virtual TKey UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the claim type for this claim.
|
|
/// </summary>
|
|
public virtual string ClaimType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the claim value for this claim.
|
|
/// </summary>
|
|
public virtual string ClaimValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// Converts the entity into a Claim instance.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public virtual Claim ToClaim()
|
|
{
|
|
return new Claim(ClaimType, ClaimValue);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Reads the type and value from the Claim.
|
|
/// </summary>
|
|
/// <param name="claim"></param>
|
|
public virtual void InitializeFromClaim(Claim claim)
|
|
{
|
|
ClaimType = claim.Type;
|
|
ClaimValue = claim.Value;
|
|
}
|
|
}
|
|
} |