Class HALLinks
Represents the standard HAL (Hypertext Application Language) navigation links for paginated responses.
public class HALLinks
- Inheritance
-
HALLinks
- Inherited Members
Remarks
HAL links provide a standardized way to navigate between pages of results.
Not all links will be present in every response - for example, Prev will be null on the first page.
Properties
First
Gets or sets the link to the first page of results.
[JsonProperty("first")]
public Link First { get; set; }
Property Value
Last
Gets or sets the link to the last page of results.
[JsonProperty("last")]
public Link Last { get; set; }
Property Value
Next
Gets or sets the link to the next page of results. Null if on the last page.
[JsonProperty("next")]
public Link Next { get; set; }
Property Value
Prev
Gets or sets the link to the previous page of results. Null if on the first page.
[JsonProperty("prev")]
public Link Prev { get; set; }
Property Value
Self
Gets or sets the link to the current page.
[JsonProperty("self")]
public Link Self { get; set; }