• Articles
  • Api Documentation
Show / Hide Table of Contents
  • Dapplo.Confluence
    • AttachmentDomain
    • ConfluenceClient
    • ConfluenceClientConfig
    • ConfluenceException
    • ContentExtensions
    • GroupDomain
    • IAttachmentDomain
    • IConfluenceClient
    • IConfluenceClientPlugins
    • IConfluenceDomain
    • IContentDomain
    • IGroupDomain
    • IMiscDomain
    • ISpaceDomain
    • IUserDomain
    • MiscExtensions
    • SpaceExtensions
    • UserDomain
    • UserIdentifierExtensions
  • Dapplo.Confluence.Entities
    • BaseEntity<TId>
    • Body
    • BodyContent
    • Children
    • Content
    • CopyContent
    • CopyDestinations
    • CopyPageRequestDestination
    • Description
    • Error
    • Group
    • History
    • IUserIdentifier
    • Label
    • LastUpdated
    • Links
    • LongRunningTask
    • Metadata
    • PagingInformation
    • Picture
    • Plain
    • Positions
    • Result<TResult>
    • SearchDetails
    • Space
    • SpaceContents
    • SystemInfoEntity
    • User
    • UserWatch
    • Version
  • Dapplo.Confluence.Query
    • ContentTypes
    • Fields
    • IContentClause
    • IDatetimeClause
    • IDatetimeClauseWithoutValue
    • IFinalClause
    • ISimpleValueClause
    • ISpaceClause
    • ITextClause
    • ITitleClause
    • ITypeClause
    • IUserClause
    • Operators
    • Where

Class Result<TResult>

A container to store pageable results See: https://docs.atlassian.com/confluence/REST/latest

Inheritance
System.Object
PagingInformation
Result<TResult>
Implements
System.Collections.IEnumerable<TResult>
Inherited Members
PagingInformation.Limit
PagingInformation.Start
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Dapplo.Confluence.Entities
Assembly: Dapplo.Confluence.dll
Syntax
[JsonObject]
public class Result<TResult> : PagingInformation
Type Parameters
Name Description
TResult

Properties

| Improve this Doc View Source

HasNext

Returns if there are more results as requested

Declaration
[JsonIgnore]
public bool HasNext { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Links

Different links for this entity, depending on the entry

Declaration
[JsonProperty("_links", DefaultValueHandling = DefaultValueHandling.Ignore)]
public Links Links { get; set; }
Property Value
Type Description
Links
| Improve this Doc View Source

Results

The actual requested information

Declaration
[JsonProperty("results", DefaultValueHandling = DefaultValueHandling.Ignore)]
public IList<TResult> Results { get; set; }
Property Value
Type Description
System.Collections.IList<TResult>
| Improve this Doc View Source

Size

How many elements

Declaration
[JsonProperty("size", DefaultValueHandling = DefaultValueHandling.Ignore)]
public int Size { get; set; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

GetEnumerator()

Declaration
public IEnumerator<TResult> GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator<TResult>

Explicit Interface Implementations

| Improve this Doc View Source

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.IEnumerable<>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2017 Dapplo