Show / Hide Table of Contents

VerifyUvCommand Constructor

VerifyUvCommand()

Initializes a new instance of the VerifyUvCommand class.

C#
public VerifyUvCommand()

Remarks

This constructor is provided for those developers who want to use the object initializer pattern. For example:

var command = new VerifyUvCommand()
{
    CheckOnly = true;
};

VerifyUvCommand(bool, bool)

Initializes a new instance of the VerifyUvCommand class.

C#
public VerifyUvCommand(bool requestTemporaryPin, bool checkOnly)

Parameters

Type Name Description
bool requestTemporaryPin

After successful match generate a temporary PIN. Certain conditions may lead to the clearing of the temporary PIN, such as fingerprint mismatch, PIV PIN failed verification, timeout, power loss, failed attempt to verify against the set value.

bool checkOnly

Check verification state of biometrics, don't perform UV.

Exceptions

Type Condition
ArgumentException

The PIN is an invalid length or requestTemporaryPin and checkOnly are both set to true.

In this article
Back to top Generated by DocFX