Class OpenIddictValidationTransaction
Represents the context associated with an OpenID Connect validation request.
Inheritance
System.Object
OpenIddictValidationTransaction
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.Validation
Assembly: cs.temp.dll.dll
Syntax
public class OpenIddictValidationTransaction
Properties
EndpointType
Gets or sets the type of the endpoint processing the current request.
Declaration
public OpenIddictValidationEndpointType EndpointType { get; set; }
Property Value
Type | Description |
---|---|
OpenIddictValidationEndpointType |
Issuer
Gets or sets the issuer address associated with the current transaction, if available.
Declaration
public Uri? Issuer { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<Uri> |
Logger
Gets or sets the logger associated with the current request.
Declaration
public ILogger Logger { get; set; }
Property Value
Type | Description |
---|---|
ILogger |
Options
Gets or sets the options associated with the current request.
Declaration
public OpenIddictValidationOptions Options { get; set; }
Property Value
Type | Description |
---|---|
OpenIddictValidationOptions |
Properties
Gets the additional properties associated with the current request.
Declaration
public IDictionary<string, object> Properties { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Request
Gets or sets the current OpenID Connect request.
Declaration
public OpenIddictRequest? Request { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<OpenIddictRequest> |
Response
Gets or sets the current OpenID Connect response being returned.
Declaration
public OpenIddictResponse? Response { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<OpenIddictResponse> |