Represents the outcome of an identity acquisition operation.
public sealed record IdentityResult(IdentityPrincipal Principal, IdentityToken? AccessToken, IdentityToken? RefreshToken) : IEquatable<IdentityResult>
kind:method, kind:property, kind:ctor. Press Esc to clear.IdentityResult(IdentityPrincipal, IdentityToken?, IdentityToken?)Represents the outcome of an identity acquisition operation.AccessTokenOptional access token for downstream APIs.PrincipalResolved identity principal.RefreshTokenOptional refresh token for renewal.