Does anyone know where I'd be able to find the definitions for the html helper (LinkExtensions) in ASP.net MVC? I'm trying to create my own extension to the ActionLinks and I want to build it upon what already exists. The LinkExtensions (from metadata) only gives me the:
public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName);
//
// Summary:
// Returns an anchor tag containing the virtual path to the specified action.
//
// Parameters:
// htmlHelper:
// The HTML helper.
//
// linkText:
// The inner text of the anchor tag.
//
// actionName:
// The name of the action.
//
// routeValues:
// An object containing the parameters for a route. The parameters are retrieved
// via reflection by examining the properties of the object. Typically created
// using object initializer syntax.
//
// Returns:
// An anchor tag.
but nothing more. I want to know where and how the anchors are built?
Thanks!