(
params: string[],
requestUrl: string)
| 51 | // made public for unit-test, not available on contract |
| 52 | // maps url-segments and query-strings |
| 53 | mapSegments( |
| 54 | params: string[], |
| 55 | requestUrl: string): IKeyValuePair[] { |
| 56 | return RouteUtility.mapSegmentsAndQueryToActionArguments(requestUrl, |
| 57 | this.controller.request.path, this.getQueryParams(), params); |
| 58 | } |
| 59 | |
| 60 | // made public for unit-test, not available on contract |
| 61 | // invokes handlers for segments and query params |
no test coverage detected