Class TokenIntrospectionFailureEvent
- Namespace
- Duende.IdentityServer.Events
- Assembly
- Duende.IdentityServer.dll
Event for failed token introspection
public class TokenIntrospectionFailureEvent : Event
- Inheritance
-
TokenIntrospectionFailureEvent
- Inherited Members
Constructors
TokenIntrospectionFailureEvent(string, string, string, IEnumerable<string>, IEnumerable<string>)
Initializes a new instance of the TokenIntrospectionSuccessEvent class.
public TokenIntrospectionFailureEvent(string apiName, string errorMessage, string token = null, IEnumerable<string> apiScopes = null, IEnumerable<string> tokenScopes = null)
Parameters
apiName
stringName of the API.
errorMessage
stringThe error message.
token
stringThe token.
apiScopes
IEnumerable<string>The API scopes.
tokenScopes
IEnumerable<string>The token scopes.
- See Also
Properties
ApiName
Gets or sets the name of the API.
public string ApiName { get; set; }
Property Value
- string
The name of the API.
- See Also
ApiScopes
Gets or sets the API scopes.
public IEnumerable<string> ApiScopes { get; set; }
Property Value
- IEnumerable<string>
The API scopes.
- See Also
Token
Gets or sets the token.
public string Token { get; set; }
Property Value
- string
The token.
- See Also
TokenScopes
Gets or sets the token scopes.
public IEnumerable<string> TokenScopes { get; set; }
Property Value
- IEnumerable<string>
The token scopes.
- See Also