[Fixes #351] Error message incorrectly references RouteCollection when you don't set the default handler on RouteBuilder
This commit is contained in:
parent
95a7785a12
commit
56b3fb9b6f
|
|
@ -104,7 +104,7 @@ namespace Microsoft.AspNetCore.Builder
|
|||
{
|
||||
if (routeBuilder.DefaultHandler == null)
|
||||
{
|
||||
throw new RouteCreationException(Resources.DefaultHandler_MustBeSet);
|
||||
throw new RouteCreationException(Resources.FormatDefaultHandler_MustBeSet(nameof(IRouteBuilder)));
|
||||
}
|
||||
|
||||
var inlineConstraintResolver = routeBuilder
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ namespace Microsoft.AspNetCore.Routing
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// A default handler must be set on the RouteCollection.
|
||||
/// A default handler must be set on the {0}.
|
||||
/// </summary>
|
||||
internal static string DefaultHandler_MustBeSet
|
||||
{
|
||||
|
|
@ -83,11 +83,11 @@ namespace Microsoft.AspNetCore.Routing
|
|||
}
|
||||
|
||||
/// <summary>
|
||||
/// A default handler must be set on the RouteCollection.
|
||||
/// A default handler must be set on the {0}.
|
||||
/// </summary>
|
||||
internal static string FormatDefaultHandler_MustBeSet()
|
||||
internal static string FormatDefaultHandler_MustBeSet(object p0)
|
||||
{
|
||||
return GetString("DefaultHandler_MustBeSet");
|
||||
return string.Format(CultureInfo.CurrentCulture, GetString("DefaultHandler_MustBeSet"), p0);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
|
|
@ -130,7 +130,7 @@
|
|||
<value>The supplied route name '{0}' is ambiguous and matched more than one route.</value>
|
||||
</data>
|
||||
<data name="DefaultHandler_MustBeSet" xml:space="preserve">
|
||||
<value>A default handler must be set on the RouteCollection.</value>
|
||||
<value>A default handler must be set on the {0}.</value>
|
||||
</data>
|
||||
<data name="DefaultInlineConstraintResolver_AmbiguousCtors" xml:space="preserve">
|
||||
<value>The constructor to use for activating the constraint type '{0}' is ambiguous. Multiple constructors were found with the following number of parameters: {1}.</value>
|
||||
|
|
|
|||
Loading…
Reference in New Issue