System.Security.Claims.ClaimsPrincipalExtensions.GetIssuerValue C# (CSharp) 메소드

GetIssuerValue() 공개 정적인 메소드

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