View Source
Interface IWebhookLogService
Assembly: Umbraco.Core.dll
Syntax
public interface IWebhookLogService
Methods
View Source
CreateAsync(WebhookLog)
Declaration
Task<WebhookLog> CreateAsync(WebhookLog webhookLog)
Parameters
Returns
View Source
Get(Guid, Int32, Int32)
Declaration
virtual async Task<PagedModel<WebhookLog>> Get(Guid webhookKey, int skip = 0, int take = 2147483647)
Parameters
Type |
Name |
Description |
Guid |
webhookKey |
|
System.Int32 |
skip |
|
System.Int32 |
take |
|
Returns
View Source
Get(Int32, Int32)
Declaration
Task<PagedModel<WebhookLog>> Get(int skip = 0, int take = 2147483647)
Parameters
Type |
Name |
Description |
System.Int32 |
skip |
|
System.Int32 |
take |
|
Returns