Class Results<TResultType>
Pagable results
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.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class Results<TResultType> : PageableResult, IEnumerable<TResultType>, IEnumerable
Type Parameters
Name | Description |
---|---|
TResultType | The type for the results |
Properties
| Improve this Doc View SourceExpand
Expand values
Declaration
[JsonProperty(PropertyName = "expand")]
public string Expand { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Values
Results
Declaration
[JsonProperty(PropertyName = "values")]
public IList<TResultType> Values { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TResultType> |
Methods
| Improve this Doc View SourceGetEnumerator()
IEnumerator implementation
Declaration
public IEnumerator<TResultType> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<TResultType> | IEnumerator of type TResultType |
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Explicit Interface Implementations
| Improve this Doc View SourceIEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.IEnumerable.GetEnumerator()