-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdateClientAssertionContext.cs
More file actions
35 lines (31 loc) · 1.1 KB
/
UpdateClientAssertionContext.cs
File metadata and controls
35 lines (31 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) Duende Software. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using Duende.IdentityModel.Client;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Http;
using System;
namespace IdentityModel.AspNetCore.OAuth2Introspection
{
/// <summary>
/// Context for the UpdateClientAssertion event
/// </summary>
public class UpdateClientAssertionContext : ResultContext<OAuth2IntrospectionOptions>
{
/// <summary>
/// ctor
/// </summary>
public UpdateClientAssertionContext(
HttpContext context,
AuthenticationScheme scheme,
OAuth2IntrospectionOptions options)
: base(context, scheme, options) { }
/// <summary>
/// The client assertion
/// </summary>
public ClientAssertion ClientAssertion { get; set; }
/// <summary>
/// The client assertion expiration time
/// </summary>
public DateTime ClientAssertionExpirationTime { get; set; }
}
}