Search code examples
c#hyperlinkrfc

A C# parser for Web Links (RFC 5988)


Anyone created an open source C# parser for Web Links HTTP "Link" header? See:
https://www.rfc-editor.org/rfc/rfc5988.

Example:

Link: <http://example.com/TheBook/chapter2>; rel="previous"; title="previous chapter"

Thanks.

Update: Ended up creating my own parser: https://github.com/JornWildt/Ramone/blob/master/Ramone/Utility/WebLinkParser.cs. Feel free to use it.


Solution

  • Ended up creating my own parser: https://github.com/JornWildt/Ramone/blob/master/Ramone/Utility/WebLinkParser.cs. Feel free to use it.