Microsoft.Identity.Client.Cache.AdalUserInfo
Contains information of a single user. This information is used for token cache lookup. Also if created with userId, userId is sent to the service when login_hint is accepted.
namespace Microsoft.Identity.Client.Cache
{
internal sealed class AdalUserInfo
{
public string UniqueId { get; }
public string DisplayableId { get; }
public string GivenName { get; }
public string FamilyName { get; }
public DateTimeOffset? PasswordExpiresOn { get; }
public Uri PasswordChangeUrl { get; }
public string IdentityProvider { get; }
public AdalUserInfo();
public AdalUserInfo(AdalUserInfo other);
}
}