| File: DeviceBoundSessionJwtResult.cs | Web Access |
| Project: src\aspnetcore\src\Security\Authentication\DeviceBoundSessions\src\Microsoft.AspNetCore.Authentication.DeviceBoundSessions.csproj (Microsoft.AspNetCore.Authentication.DeviceBoundSessions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Authentication.DeviceBoundSessions; /// <summary> /// Result of validating a DBSC proof JWT. /// </summary> internal sealed class DeviceBoundSessionJwtResult { public required string Algorithm { get; init; } public required string PublicKeyJwk { get; init; } public string? Challenge { get; init; } public string? Authorization { get; init; } }