Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A C# parser for Web Links (RFC 5988)

Tags:

c#

hyperlink

rfc

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.

like image 643
Jørn Wildt Avatar asked Mar 16 '12 06:03

Jørn Wildt


1 Answers

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

like image 97
Jørn Wildt Avatar answered Sep 30 '22 14:09

Jørn Wildt