Class UserEntity
Definition
- Assembly:
- Tizen.Security.WebAuthn.dll
User entity.
public class UserEntity
- Inheritance
-
objectUserEntity
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialuserentity
Constructors
View SourceUserEntity(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 SourceDisplayName
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
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
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