Temporary change to prevent cross repo breaking change: Added ooverload for MatcherEndpoint

This commit is contained in:
Kiran Challa 2018-07-13 14:24:11 -07:00
parent 42708bec91
commit bc79a47959
1 changed files with 12 additions and 0 deletions

View File

@ -16,6 +16,18 @@ namespace Microsoft.AspNetCore.Routing.Matchers
return (context) => Task.CompletedTask;
};
public MatcherEndpoint(
Func<RequestDelegate, RequestDelegate> invoker,
string template,
RouteValueDictionary defaults,
RouteValueDictionary requiredValues,
int order,
EndpointMetadataCollection metadata,
string displayName)
: this(invoker, template, defaults, requiredValues, new List<MatchProcessorReference>(), order, metadata, displayName)
{
}
public MatcherEndpoint(
Func<RequestDelegate, RequestDelegate> invoker,
string template,