Included default route name and template in docs

Added the route name and template being used in the
`BuilderExtensions.UseMvcWithDefaultRoute()` method.

Issue #1885
This commit is contained in:
Henk Mollema 2015-04-28 22:34:22 +02:00
parent f77bb0ed2f
commit f2fed5e940
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ namespace Microsoft.AspNet.Builder
/// <summary>
/// Adds MVC to the <see cref="IApplicationBuilder"/> request execution pipeline
/// with a default route.
/// with a default route named 'default' and the following template:
/// '{controller=Home}/{action=Index}/{id?}'.
/// </summary>
/// <param name="app">The <see cref="IApplicationBuilder"/>.</param>
/// <returns>The <paramref name="app"/>.</returns>