Class PubkeyCredDescriptor
Definition
- Assembly:
- Tizen.Security.WebAuthn.dll
Public key credential descriptor.
public class PubkeyCredDescriptor
- Inheritance
-
objectPubkeyCredDescriptor
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor
Constructors
View SourcePubkeyCredDescriptor(PubkeyCredType, byte[], AuthenticatorTransport)
Initializes a new instance of the PubkeyCredDescriptor class.
Declaration
public PubkeyCredDescriptor(PubkeyCredType type, byte[] id, AuthenticatorTransport transport)
Parameters
Type | Name | Description |
---|---|---|
PubkeyCredType | type | The type of the public key credential. |
byte[] | id | The credential ID of the public key credential. |
AuthenticatorTransport | transport | Transport types. To represent multiple transports, this enum can be ORed multiple times. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor
Properties
View SourceId
Gets the ID of the public key credential.
Declaration
public byte[] Id { get; init; }
Property Value
Type | Description |
---|---|
byte[] | The binary ID of the public key credential. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor
Transport
Gets the transport types.
Declaration
public AuthenticatorTransport Transport { get; init; }
Property Value
Type | Description |
---|---|
AuthenticatorTransport | The transport types describing communication between the client and the authenticator. To represent multiple transports, this enum can be ORed multiple times. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor
Type
Gets the type of the public key credential.
Declaration
public PubkeyCredType Type { get; init; }
Property Value
Type | Description |
---|---|
PubkeyCredType | The type of the public key credential. |
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor