Show / Hide Table of Contents

    Class GitHubUserInfo

    Description of the user information data for the Git Hub client

    Inheritance
    Object
    GitHubUserInfo
    Implements
    IUserInfo
    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 email

    The email address of the user

    Properties

    Email

    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

    Implements

    IUserInfo
    Back to top i5 Toolkit Documentation