Show / Hide Table of Contents

Class OpenIddictServerEvents.BaseValidatingClientContext

Represents an abstract base class used for certain event contexts.

Inheritance
System.Object
OpenIddictServerEvents.BaseContext
OpenIddictServerEvents.BaseRequestContext
OpenIddictServerEvents.BaseValidatingContext
OpenIddictServerEvents.BaseValidatingClientContext
OpenIddictServerEvents.ValidateDeviceRequestContext
OpenIddictServerEvents.ValidateIntrospectionRequestContext
OpenIddictServerEvents.ValidateRevocationRequestContext
OpenIddictServerEvents.ValidateTokenRequestContext
OpenIddictServerEvents.ValidateVerificationRequestContext
Inherited Members
OpenIddictServerEvents.BaseValidatingContext.IsRejected
OpenIddictServerEvents.BaseValidatingContext.Error
OpenIddictServerEvents.BaseValidatingContext.ErrorDescription
OpenIddictServerEvents.BaseValidatingContext.ErrorUri
OpenIddictServerEvents.BaseValidatingContext.Reject(String, String, String)
OpenIddictServerEvents.BaseRequestContext.IsRequestHandled
OpenIddictServerEvents.BaseRequestContext.IsRequestSkipped
OpenIddictServerEvents.BaseRequestContext.HandleRequest()
OpenIddictServerEvents.BaseRequestContext.SkipRequest()
OpenIddictServerEvents.BaseContext.Transaction
OpenIddictServerEvents.BaseContext.Issuer
OpenIddictServerEvents.BaseContext.EndpointType
OpenIddictServerEvents.BaseContext.Logger
OpenIddictServerEvents.BaseContext.Options
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenIddict.Server
Assembly: cs.temp.dll.dll
Syntax
public abstract class BaseValidatingClientContext : OpenIddictServerEvents.BaseValidatingContext

Constructors

BaseValidatingClientContext(OpenIddictServerTransaction)

Creates a new instance of the OpenIddictServerEvents.BaseValidatingClientContext class.

Declaration
protected BaseValidatingClientContext(OpenIddictServerTransaction transaction)
Parameters
Type Name Description
OpenIddictServerTransaction transaction

Properties

ClientId

Gets the "client_id" parameter for the current request. The authorization server application is responsible for validating this value to ensure it identifies a registered client.

Declaration
public string ClientId { get; }
Property Value
Type Description
System.String

ClientSecret

Gets the "client_secret" parameter for the current request. The authorization server application is responsible for validating this value to ensure it identifies a registered client.

Declaration
public string ClientSecret { get; }
Property Value
Type Description
System.String
In This Article
Back to top Generated by DocFX