Inheritance: System.Web.Mvc.UrlHelper, IUrlHelperWrapper
Ejemplo n.º 1
0
 // GET: /Account/LogOn
 /// <summary>
 /// Initializes data that might not be available when the constructor is called.
 /// </summary>
 /// <param name="requestContext">The HTTP context and route data.</param>
 protected override void Initialize(RequestContext requestContext)
 {
     base.Initialize(requestContext);
     //Url = new UrlHelperWrapper(base.Url);
     if (Url == null)
         Url = new UrlHelperWrapper(requestContext);
 }