Interface IUserInfo
Contract specifying how user information that can be accessed from an OIDC provider
Namespace: i5.Toolkit.Core.OpenIDConnectClient
Assembly: cs.temp.dll.dll
Syntax
public interface IUserInfo
Properties
The email address of the logged in user
Declaration
string Email { get; }
Property Value
Type | Description |
---|---|
String |
FullName
The full name of the logged in user
Declaration
string FullName { get; }
Property Value
Type | Description |
---|---|
String |
Username
The user name of the logged in user
Declaration
string Username { get; }
Property Value
Type | Description |
---|---|
String |