mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2025-01-12 06:27:47 +00:00
15 lines
418 B
C#
15 lines
418 B
C#
|
using System.Linq;
|
||
|
using System.Security.Claims;
|
||
|
|
||
|
namespace SpotifyAPI.Web.Examples.ASP
|
||
|
{
|
||
|
public static class ClaimsExtensions
|
||
|
{
|
||
|
public static string GetSpecificClaim(this ClaimsIdentity claimsIdentity, string claimType)
|
||
|
{
|
||
|
Claim claim = claimsIdentity.Claims.FirstOrDefault(x => x.Type == claimType);
|
||
|
|
||
|
return claim != null ? claim.Value : string.Empty;
|
||
|
}
|
||
|
}
|
||
|
}
|