forked from gitter-badger/IdentityServer4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthorizationCode.cs
More file actions
112 lines (98 loc) · 3.09 KB
/
AuthorizationCode.cs
File metadata and controls
112 lines (98 loc) · 3.09 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
using System;
using System.Collections.Generic;
using System.Security.Claims;
namespace IdentityServer4.Models
{
/// <summary>
/// Modles an authorization code.
/// </summary>
public class AuthorizationCode
{
/// <summary>
/// Gets or sets the creation time.
/// </summary>
/// <value>
/// The creation time.
/// </value>
public DateTime CreationTime { get; set; } = IdentityServerDateTime.UtcNow;
/// <summary>
/// Gets or sets the life time.
/// </summary>
/// <value>
/// The life time.
/// </value>
public int Lifetime { get; set; }
/// <summary>
/// Gets or sets the ID of the client.
/// </summary>
/// <value>
/// The ID of the client.
/// </value>
public string ClientId { get; set; }
/// <summary>
/// Gets or sets the subject.
/// </summary>
/// <value>
/// The subject.
/// </value>
public ClaimsPrincipal Subject { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this code is an OpenID Connect code.
/// </summary>
/// <value>
/// <c>true</c> if this instance is open identifier; otherwise, <c>false</c>.
/// </value>
public bool IsOpenId { get; set; }
/// <summary>
/// Gets or sets the requested scopes.
/// </summary>
/// <value>
/// The requested scopes.
/// </value>
public IEnumerable<string> RequestedScopes { get; set; }
/// <summary>
/// Gets or sets the redirect URI.
/// </summary>
/// <value>
/// The redirect URI.
/// </value>
public string RedirectUri { get; set; }
/// <summary>
/// Gets or sets the nonce.
/// </summary>
/// <value>
/// The nonce.
/// </value>
public string Nonce { get; set; }
/// <summary>
/// Gets or sets a value indicating whether consent was shown.
/// </summary>
/// <value>
/// <c>true</c> if consent was shown; otherwise, <c>false</c>.
/// </value>
public bool WasConsentShown { get; set; }
/// <summary>
/// Gets or sets the session identifier.
/// </summary>
/// <value>
/// The session identifier.
/// </value>
public string SessionId { get; set; }
/// <summary>
/// Gets or sets the code challenge.
/// </summary>
/// <value>
/// The code challenge.
/// </value>
public string CodeChallenge { get; set; }
/// <summary>
/// Gets or sets the code challenge method.
/// </summary>
/// <value>
/// The code challenge method
/// </value>
public string CodeChallengeMethod { get; set; }
}
}