Edit

WEBAUTHN_PLUGIN_USER_VERIFICATION_REQUEST structure (webauthnplugin.h)

Describes a Windows Hello user-verification request for a plugin authenticator.

Syntax

typedef struct _WEBAUTHN_PLUGIN_USER_VERIFICATION_REQUEST {
  HWND    hwnd;
  REFGUID rguidTransactionId;
  LPCWSTR pwszUsername;
  LPCWSTR pwszDisplayHint;
} WEBAUTHN_PLUGIN_USER_VERIFICATION_REQUEST, *PWEBAUTHN_PLUGIN_USER_VERIFICATION_REQUEST;

Members

hwnd

The window handle for the top-level plugin window that is currently in the foreground for the WebAuthn operation.

rguidTransactionId

The transaction identifier from the corresponding WEBAUTHN_PLUGIN_OPERATION_REQUEST.

pwszUsername

A pointer to the user name associated with the credential in use for the WebAuthn operation.

pwszDisplayHint

A pointer to the text hint displayed on the Windows Hello prompt.

Remarks

Use this structure with WebAuthNPluginPerformUserVerification.

Requirements

Requirement Value
Header webauthnplugin.h

See also

WebAuthNPluginPerformUserVerification