Delegate HtmlSaveOptions.CssUrlMakingStrategy

HtmlSaveOptions.CssUrlMakingStrategy delegate

You can assign to this property delegate created from custom method that implements creation of URL of CSS referenced in generated HTML document. F.e. if You want to make CSS referenced in HTML f.e. as “otherPage.ASPX?CssID=zjjkklj” Then such custom strategy must return “otherPage.ASPX?CssID=zjjkklj”

public delegate string CssUrlMakingStrategy(CssUrlRequestInfo cssUrlRequestInfo);
ParameterTypeDescription
cssUrlRequestInfoCssUrlRequestInforepresents set of data that can be used for generation of CSS’ URL

Return Value

must return string that represents CSS’s URL or URL’s template

See Also