Interface IReturnUrlParser
- Namespace
- Duende.IdentityServer.Services
- Assembly
- Duende.IdentityServer.dll
Interface for the return URL parser
public interface IReturnUrlParser
Methods
IsValidReturnUrl(string)
Determines whether the return URL is valid.
bool IsValidReturnUrl(string returnUrl)
Parameters
returnUrl
stringThe return URL.
Returns
- bool
true
if the return URL is valid; otherwise,false
.
ParseAsync(string)
Parses a return URL.
Task<AuthorizationRequest?> ParseAsync(string returnUrl)
Parameters
returnUrl
stringThe return URL.