File: Internal\IClaimUidExtractor.cs
Web Access
Project: src\src\Antiforgery\src\Microsoft.AspNetCore.Antiforgery.csproj (Microsoft.AspNetCore.Antiforgery)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Security.Claims;
 
namespace Microsoft.AspNetCore.Antiforgery;
 
/// <summary>
/// This interface can extract unique identifers for a <see cref="ClaimsPrincipal"/>.
/// </summary>
internal interface IClaimUidExtractor
{
    /// <summary>
    /// Extracts claims identifier.
    /// </summary>
    /// <param name="claimsPrincipal">The <see cref="ClaimsPrincipal"/>.</param>
    /// <returns>The claims identifier.</returns>
    string? ExtractClaimUid(ClaimsPrincipal claimsPrincipal);
}