Class GitHubUserInfo
Description of the user information data for the Git Hub client
Implements
Namespace: i5.Toolkit.Core.OpenIDConnectClient
Assembly: cs.temp.dll.dll
Syntax
public class GitHubUserInfo : IUserInfo
Constructors
GitHubUserInfo(String, String)
Creates a new instance of the GitHub user info with the given parameters
Declaration
public GitHubUserInfo(string loginName, string email)
Parameters
| Type | Name | Description |
|---|---|---|
| String | loginName | |
| String | The email address of the user |
Properties
The email address of the user This is a mapping based on the available user data of the OIDC provider
Declaration
public string Email { get; }
Property Value
| Type | Description |
|---|---|
| String |
FullName
A clear name of the user This is a mapping based on the available user data of the OIDC provider
Declaration
public string FullName { get; }
Property Value
| Type | Description |
|---|---|
| String |
Username
The username of the user This is a mapping based on the available user data of the OIDC provider
Declaration
public string Username { get; }
Property Value
| Type | Description |
|---|---|
| String |