System.Security.Claims.ClaimsPrincipalExtensions.GetIssuerValue C# (CSharp) Méthode

GetIssuerValue() public static méthode

public static GetIssuerValue ( this principal, bool throwIfNotFound = true ) : string
principal this
throwIfNotFound bool
Résultat string
        public static string GetIssuerValue(this ClaimsPrincipal principal, bool throwIfNotFound = true)
        {
            return principal.FindFirstValue(OpenIdConnectClaimTypes.IssuerValue, throwIfNotFound);
        }