ABsoluteMaybe.SampleWebsite.MVC2.Areas.ABsoluteMaybeDashboard.ABsoluteMaybeDashboardAreaRegistration.RegisterArea C# (CSharp) Method

RegisterArea() public method

public RegisterArea ( System.Web.Mvc.AreaRegistrationContext context ) : void
context System.Web.Mvc.AreaRegistrationContext
return void
        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "ABsoluteMaybeDashboard_default",
                "ABsoluteMaybeDashboard/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional }
            );

            ABsoluteMaybeConfiguration.Configure();
        }
ABsoluteMaybeDashboardAreaRegistration