Calling one route from within another route #123
mckinney-bryan
started this conversation in
General
Replies: 1 comment
-
Hi, can you just pass HttpContextBase ctx? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to call one route from within another route? A example being...
ctx1 =
xml<SomeRequest>Test</SomeRequest>
ctx2 =
xml<SomeNewRequest>Test2<\SomeNewRequest>
public static async Task Method1Rq(HttpContext ctx1) {
}
public static async Task Method2Rq(HttpContext ctx2) {
await ctx.Response.Send("My Response");
}
Any help/ideas is appreciated!
**I need to clarify my question.
Beta Was this translation helpful? Give feedback.
All reactions