Edit

WEBAUTHN_PLUGIN_CANCEL_OPERATION_REQUEST structure (pluginauthenticator.h)

Identifies an in-progress plugin authenticator operation to cancel.

Syntax

typedef struct _WEBAUTHN_PLUGIN_CANCEL_OPERATION_REQUEST {
  GUID  transactionId;
  DWORD cbRequestSignature;
  byte  *pbRequestSignature;
} WEBAUTHN_PLUGIN_CANCEL_OPERATION_REQUEST, *PWEBAUTHN_PLUGIN_CANCEL_OPERATION_REQUEST;

Members

transactionId

The transaction identifier of the operation to cancel.

cbRequestSignature

The size, in bytes, of the request signature pointed to by pbRequestSignature.

pbRequestSignature

A pointer to the request signature buffer.

Remarks

Windows passes this structure to IPluginAuthenticator::CancelOperation.

Requirements

Requirement Value
Header pluginauthenticator.h

See also

IPluginAuthenticator::CancelOperation