Class OpenIddictServerEvents.ValidateLogoutRequestContext
Represents an event called for each request to the logout endpoint to determine if the request is valid and should continue to be processed.
Inheritance
System.Object
OpenIddictServerEvents.ValidateLogoutRequestContext
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 class ValidateLogoutRequestContext : OpenIddictServerEvents.BaseValidatingContext
Constructors
ValidateLogoutRequestContext(OpenIddictServerTransaction)
Creates a new instance of the OpenIddictServerEvents.ValidateLogoutRequestContext class.
Declaration
public ValidateLogoutRequestContext(OpenIddictServerTransaction transaction)
Parameters
Type | Name | Description |
---|---|---|
OpenIddictServerTransaction | transaction |
Properties
PostLogoutRedirectUri
Gets the post_logout_redirect_uri specified by the client application.
Declaration
public string PostLogoutRedirectUri { get; }
Property Value
Type | Description |
---|---|
System.String |
Request
Gets or sets the request.
Declaration
public OpenIddictRequest Request { get; set; }
Property Value
Type | Description |
---|---|
OpenIddictRequest |
Methods
SetPostLogoutRedirectUri(String)
Populates the PostLogoutRedirectUri property with the specified redirect_uri.
Declaration
public void SetPostLogoutRedirectUri(string address)
Parameters
Type | Name | Description |
---|---|---|
System.String | address | The post_logout_redirect_uri to use when redirecting the user agent. |