Interface IAppRedirectService
Defines methods for working with application URL redirects.
Namespace: DataWeb.Http
Assembly: DataWeb.Core.dll
Syntax
public interface IAppRedirectService
Methods
GetAppRedirectsAsync(CancellationToken)
Retrieves all application URL redirects from the store.
Declaration
Task<IEnumerable<AppRedirect>> GetAppRedirectsAsync(CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancellationToken |
Returns
Type | Description |
---|---|
Task<IEnumerable<AppRedirect>> | An IEnumerable<T> of AppRedirect objects. |