Class OpenIddictServerEvents.BaseValidatingClientContext
Represents an abstract base class used for certain event contexts.
Inheritance
System.Object
OpenIddictServerEvents.BaseValidatingClientContext
Inherited Members
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 |