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
Copy file name to clipboardExpand all lines: Src/Fido2/TokenBindingDto.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,6 @@
1
-
namespaceFido2NetLib
1
+
usingSystem.Text.Json.Serialization;
2
+
3
+
namespaceFido2NetLib
2
4
{
3
5
publicclassTokenBindingDto
4
6
{
@@ -7,11 +9,13 @@ public class TokenBindingDto
7
9
/// supported: Indicates the client supports token binding, but it was not negotiated when communicating with the Relying Party.
8
10
/// present: Indicates token binding was used when communicating with the Relying Party. In this case, the id member MUST be present
9
11
/// </summary>
12
+
[JsonPropertyName("status")]
10
13
publicstring?Status{get;set;}
11
14
12
15
/// <summary>
13
16
/// This member MUST be present if status is present, and MUST a base64url encoding of the Token Binding ID that was used when communicating with the Relying Party.
0 commit comments