Edit

WEBAUTHN_CREDENTIAL_DETAILS_LIST structure (webauthn.h)

Contains a list of WEBAUTHN_CREDENTIAL_DETAILS structures returned by WebAuthNGetPlatformCredentialList.

Syntax

typedef struct _WEBAUTHN_CREDENTIAL_DETAILS_LIST {
  DWORD                        cCredentialDetails;
  PWEBAUTHN_CREDENTIAL_DETAILS *ppCredentialDetails;
} WEBAUTHN_CREDENTIAL_DETAILS_LIST, *PWEBAUTHN_CREDENTIAL_DETAILS_LIST;

Members

cCredentialDetails

The number of elements in the ppCredentialDetails array.

ppCredentialDetails

A pointer to an array of pointers to WEBAUTHN_CREDENTIAL_DETAILS structures.

Requirements

Requirement Value
Header webauthn.h

See also

WEBAUTHN_CREDENTIAL_DETAILS