(self, name: str, /, **path_params: Any)
| 619 | await response(scope, receive, send) |
| 620 | |
| 621 | def url_path_for(self, name: str, /, **path_params: Any) -> URLPath: |
| 622 | for route in self.routes: |
| 623 | try: |
| 624 | return route.url_path_for(name, **path_params) |
| 625 | except NoMatchFound: |
| 626 | pass |
| 627 | raise NoMatchFound(name, path_params) |
| 628 | |
| 629 | async def lifespan(self, scope: Scope, receive: Receive, send: Send) -> None: |
| 630 | """ |