Skip to content

Instantly share code, notes, and snippets.

View Digitalroot's full-sized avatar

Digitalroot Digitalroot

View GitHub Profile
public class LinkHeader
{
public string FirstLink { get; set; }
public string PrevLink { get; set; }
public string NextLink { get; set; }
public string LastLink { get; set; }
public static LinkHeader CreateInstance(HttpResponseMessage httpResponseMessage)
{
if (httpResponseMessage.Headers.Contains("Link"))