When I use the build in Html Helpers, I can simply write the following.
@Html.Actionlink(bla)
But when I write my own Html Helpers, I need to block the encoding by wrapping it in a MvcHtmlString
@MvcHtmlString.Create(Html.CustomPager(bla))
Is there anything I can do in the extension method so that I don't have to worry about "not" encoding it?