From f2fed5e9408562f1c888f772157ec9d88047ab9e Mon Sep 17 00:00:00 2001 From: Henk Mollema Date: Tue, 28 Apr 2015 22:34:22 +0200 Subject: [PATCH] Included default route name and template in docs Added the route name and template being used in the `BuilderExtensions.UseMvcWithDefaultRoute()` method. Issue #1885 --- src/Microsoft.AspNet.Mvc/BuilderExtensions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs index 16af874b02..ebecd87f93 100644 --- a/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs +++ b/src/Microsoft.AspNet.Mvc/BuilderExtensions.cs @@ -31,7 +31,8 @@ namespace Microsoft.AspNet.Builder /// /// Adds MVC to the request execution pipeline - /// with a default route. + /// with a default route named 'default' and the following template: + /// '{controller=Home}/{action=Index}/{id?}'. /// /// The . /// The .