Show / Hide Table of Contents

Interface IListResult<T>

This interface is defined to standardize to return a list of items to clients.

Namespace: Volo.Abp.Application.Dtos
Assembly: Volo.Abp.Ddd.Application.Contracts.dll
Syntax
public interface IListResult<T>
Type Parameters
Name Description
T

Type of the items in the Items list

Properties

Items

List of items.

Declaration
IReadOnlyList<T> Items { get; set; }
Property Value
Type Description
IReadOnlyList<T>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft