fixed typo 'until' typed twice (#1836)
parent
76288254df
commit
201f690065
|
@ -46,7 +46,7 @@ URL generation
|
|||
^^^^^^^^^^^^^^
|
||||
URL generation is the process by which routing can create a URL path based on a set of route values. This allows for a logical separation between your handlers and the URLs that access them.
|
||||
|
||||
URL generation follows a similar iterative process, but starts with user or framework code calling into the :dn:method:`~Microsoft.AspNetCore.Routing.IRouter.GetVirtualPath` method of the route collection. Each *route* will then have its ``GetVirtualPath`` method called in sequence until until a non-null :dn:cls:`~Microsoft.AspNetCore.Routing.VirtualPathData` is returned.
|
||||
URL generation follows a similar iterative process, but starts with user or framework code calling into the :dn:method:`~Microsoft.AspNetCore.Routing.IRouter.GetVirtualPath` method of the route collection. Each *route* will then have its ``GetVirtualPath`` method called in sequence until a non-null :dn:cls:`~Microsoft.AspNetCore.Routing.VirtualPathData` is returned.
|
||||
|
||||
The primary inputs to ``GetVirtualPath`` are:
|
||||
|
||||
|
|
Loading…
Reference in New Issue