System.Security.Claims.ClaimsPrincipalExtensions.GetObjectIdentifierValue C# (CSharp) Method

GetObjectIdentifierValue() public static method

public static GetObjectIdentifierValue ( this principal, bool throwIfNotFound = true ) : string
principal this
throwIfNotFound bool
return string
        public static string GetObjectIdentifierValue(this ClaimsPrincipal principal, bool throwIfNotFound = true)
        {
            return principal.FindFirstValue(AzureADClaimTypes.ObjectId, throwIfNotFound);
        }