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(Boolean, Boolean)
Initializes a new instance of the VerifyUvCommand
class.
C#
public VerifyUvCommand(bool requestTemporaryPin, bool checkOnly)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | 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. |
System.Boolean | checkOnly | Check verification state of biometrics, don't perform UV. |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | The PIN is an invalid length or requestTemporaryPin and checkOnly are both set to true. |