You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Accessing that route via http://localhost:1234/resource/12345/subresource/67890 produces the following error:
The given key was not present in the dictionary.
<br>
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
at Grapevine.Local.Program.<>c.<Main>b__0_0(IHttpContext context) in C:\source\personal\grapevine\src\Grapevine.Local\Program.cs:line 18
at Grapevine.Server.Route.Invoke(IHttpContext context) in C:\source\personal\grapevine\src\Grapevine\Server\Route.cs:line 197
at Grapevine.Server.Router.Route(IHttpContext context, IList`1 routing) in C:\source\personal\grapevine\src\Grapevine\Server\Router.cs:line 580
at Grapevine.Server.Router.Route(Object state) in C:\source\personal\grapevine\src\Grapevine\Server\Router.cs:line 543
It's expected that all defined parameters are accessible to the route.
The text was updated successfully, but these errors were encountered:
When parsing a route for parameters, only the first match is making it into the
PathParameters
property ofHttpContext.Request
.Accessing that route via
http://localhost:1234/resource/12345/subresource/67890
produces the following error:It's expected that all defined parameters are accessible to the route.
The text was updated successfully, but these errors were encountered: