This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- language: c# --> | |
public static class HtmlExtensions | |
{ | |
public static IHtmlString FontAwesomeActionLink(this HtmlHelper htmlHelper, string linkText, | |
string actionName, string fontAwesomeClass, object routeValues = null, object htmlAttributes = null) | |
{ | |
return FontAwesomeActionLink(htmlHelper, linkText, actionName, null, fontAwesomeClass, routeValues, | |
htmlAttributes); | |
} |