C# Class Ramone.MediaTypes.Html.HtmlLinkExtensions

Mostrar archivo Open project: JornWildt/Ramone

Public Methods

Method Description
Link ( this node, Response response ) : Ramone.MediaTypes.Html.Link

Convert a single HTML node to ILink, assuming the node represents a link.

Link ( this node, Uri baseUrl ) : Ramone.MediaTypes.Html.Link
Links ( this html, Response response ) : IEnumerable

Get all header links in the HTML document as a sequence of ILink.

Links ( this html, Uri baseUrl ) : IEnumerable

Method Details

Link() public static method

Convert a single HTML node to ILink, assuming the node represents a link.
public static Link ( this node, Response response ) : Ramone.MediaTypes.Html.Link
node this
response Response The response from which the html originates. /// The response information is used to convert relative links to absolute links.
return Ramone.MediaTypes.Html.Link

Link() public static method

public static Link ( this node, Uri baseUrl ) : Ramone.MediaTypes.Html.Link
node this
baseUrl System.Uri
return Ramone.MediaTypes.Html.Link

Links() public static method

Get all header links in the HTML document as a sequence of ILink.
public static Links ( this html, Response response ) : IEnumerable
html this
response Response The response from which the html originates. /// The response information is used to convert relative links to absolute links.
return IEnumerable

Links() public static method

public static Links ( this html, Uri baseUrl ) : IEnumerable
html this
baseUrl System.Uri
return IEnumerable