Interface IMemberReferenceService
Service for retrieving paged references to a member, handling the external member fallback
when the entity-based lookup fails (external members have no umbracoNode entry).
Namespace: Umbraco.Cms.Api.Management.Services
Assembly: Umbraco.Cms.Api.Management.dll
Syntax
public interface IMemberReferenceService
Methods
View SourceGetPagedReferencesAsync(Guid, int, int)
Gets a paged list of items that reference the specified member.
Declaration
Task<Attempt<PagedModel<RelationItemModel>, GetReferencesOperationStatus>> GetPagedReferencesAsync(Guid id, int skip, int take)
Parameters
| Type | Name | Description |
|---|---|---|
| Guid | id | The unique identifier of the member. |
| int | skip | The number of items to skip. |
| int | take | The maximum number of items to return. |
Returns
| Type | Description |
|---|---|
| Task<Attempt<PagedModel<RelationItemModel>, GetReferencesOperationStatus>> | An Attempt<TResult, TStatus> containing the paged relation items or an operation status on failure. |