Class PagedResponse<TResponse>

Inheritance
System.Object
PagedResponse<TResponse>
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.Social.Common.Rest.Contracts
Assembly: EPiServer.Social.Common.Rest.Contracts.dll
Version: 1.5.4
Syntax
public class PagedResponse<TResponse>
Type Parameters
Name Description
TResponse

Constructors

PagedResponse()

Declaration
public PagedResponse()

Properties

HasMore

Declaration
public bool HasMore { get; set; }
Property Value
Type Description
System.Boolean

Results

Declaration
public IEnumerable<TResponse> Results { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<TResponse>

TotalCount

Declaration
public long TotalCount { get; set; }
Property Value
Type Description
System.Int64
arrow_upward