-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendingRequestContext.cs
More file actions
29 lines (26 loc) · 972 Bytes
/
SendingRequestContext.cs
File metadata and controls
29 lines (26 loc) · 972 Bytes
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
// 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;
namespace IdentityModel.AspNetCore.OAuth2Introspection
{
/// <summary>
/// Context for the SendingRequest event
/// </summary>
public class SendingRequestContext : BaseContext<OAuth2IntrospectionOptions>
{
/// <summary>
/// ctor
/// </summary>
public SendingRequestContext(
HttpContext context,
AuthenticationScheme scheme,
OAuth2IntrospectionOptions options)
: base(context, scheme, options) { }
/// <summary>
/// The <see cref="TokenIntrospectionRequest"/> request
/// </summary>
public TokenIntrospectionRequest TokenIntrospectionRequest { get; set; }
}
}