You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merged PR 21195: UserConsentVerifier is not limited to fingerprints
UserConsentVerifier is not limited to fingerprints. It can do facial recognition or other Windows Hello-type authentication. Change text and samples to avoid fingerprint assumption. Remove unnecessary `try/catch`.
Also add a C++/WinRT example for WinUI3.
Copy file name to clipboardExpand all lines: windows.security.credentials.ui/userconsentverificationresult.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,19 +14,19 @@ Describes the result of a verification operation.
14
14
15
15
## -enum-fields
16
16
### -field Verified:0
17
-
The fingerprint was verified.
17
+
The user was verified.
18
18
19
19
### -field DeviceNotPresent:1
20
-
There is no biometric verifier device available.
20
+
There is no authentication device available.
21
21
22
22
### -field NotConfiguredForUser:2
23
-
A biometric verifier device is not configured for this user.
23
+
An authentication verifier device is not configured for this user.
24
24
25
25
### -field DisabledByPolicy:3
26
-
Group policy has disabled the biometric verifier device.
26
+
Group policy has disabled authentication device verification.
27
27
28
28
### -field DeviceBusy:4
29
-
The biometric verifier device is performing an operation and is unavailable.
29
+
The authentication device is performing an operation and is unavailable.
30
30
31
31
### -field RetriesExhausted:5
32
32
After 10 attempts, the original verification request and all subsequent attempts at the same verification were not verified.
@@ -39,7 +39,7 @@ The verification operation was canceled.
39
39
40
40
## -examples
41
41
42
-
The following example shows a method that requests fingerprint verification and returns a message that describes the result based on the UserConsentVerificationResult value.
42
+
The following example shows a method that requests verification from an authentication device and returns a message that describes the result based on the UserConsentVerificationResult value.
0 commit comments