Class Result<TResult>
A container to store pageable results See: https://docs.atlassian.com/confluence/REST/latest
Implements
System.Collections.IEnumerable<TResult>
Inherited Members
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 SourceHasNext
Returns if there are more results as requested
Declaration
[JsonIgnore]
public bool HasNext { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
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 |
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> |
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 SourceGetEnumerator()
Declaration
public IEnumerator<TResult> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator<TResult> |
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.IEnumerable<>