Class UserEntity

    Definition

    Namespace:
    Tizen.Security.WebAuthn
    Assembly:
    Tizen.Security.WebAuthn.dll

    User entity.

    public class UserEntity
    Inheritance
    object
    UserEntity
    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity

    Constructors

    View Source

    UserEntity(string, byte[], string)

    Initializes a new instance of the RelyingPartyEntity class.

    Declaration
    public UserEntity(string name, byte[] id, string displayName)
    Parameters
    Type Name Description
    string name

    A human-palatable name for the entity.

    byte[] id

    The ID of the user account. An ID is a byte sequence with a maximum size of 64 bytes, and is not meant to be displayed to the user.

    string displayName

    A human-palatable name for the user account, intended only for display.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity

    Properties

    View Source

    DisplayName

    Gets the dispay name of the user entity.

    Declaration
    public string DisplayName { get; init; }
    Property Value
    Type Description
    string

    A human-palatable name for the user account, intended only for display.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity

    View Source

    Id

    Gets the user ID.

    Declaration
    public byte[] Id { get; init; }
    Property Value
    Type Description
    byte[]

    The ID of the user account.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity

    View Source

    Name

    Gets the name of the user entity.

    Declaration
    public string Name { get; init; }
    Property Value
    Type Description
    string

    A human-palatable name for the entity.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity

    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX