View Source
Interface IWebhookLogRepository
Assembly: Umbraco.Core.dll
Syntax
public interface IWebhookLogRepository
Methods
View Source
CreateAsync(WebhookLog)
Declaration
Task CreateAsync(WebhookLog log)
Parameters
Returns
View Source
DeleteByIds(int[])
Declaration
Task DeleteByIds(int[] ids)
Parameters
| Type |
Name |
Description |
| int[] |
ids |
|
Returns
View Source
GetOlderThanDate(DateTime)
Declaration
Task<IEnumerable<WebhookLog>> GetOlderThanDate(DateTime date)
Parameters
| Type |
Name |
Description |
| DateTime |
date |
|
Returns
View Source
GetPagedAsync(Guid, int, int)
Declaration
Task<PagedModel<WebhookLog>> GetPagedAsync(Guid webhookKey, int skip, int take)
Parameters
| Type |
Name |
Description |
| Guid |
webhookKey |
|
| int |
skip |
|
| int |
take |
|
Returns
View Source
GetPagedAsync(int, int)
Declaration
Task<PagedModel<WebhookLog>> GetPagedAsync(int skip, int take)
Parameters
| Type |
Name |
Description |
| int |
skip |
|
| int |
take |
|
Returns