Aaron Roney

Results 72 comments of Aaron Roney

Good idea: if you want to make the PR, then you can get credit. 😄 Otherwise, I am happy to do it.

Hey @lionsoft: thanks! Any way you could add a test to cover this scenario?

The second example [here](https://github.com/twitchax/AspNetCore.Proxy#run-a-proxy) would cover your use case. So, you would just do something like: ```csharp app.RunProxy(proxy => proxy .UseHttp((context, args) => { return "http://localhost:3000"; }) .UseWs((context, args) =>...

Can you give me a code snippet example of what you're trying to do?

Interesting: this _might_ be possible, but it is not trivial since ASP.NET will try to pick up that return value and serialize it into the response. This library already does...

So, hmmm, I have a few ideas. It might be a bit complex, but I might be able to have `WithAfterReceive` optionally return a `Task`, and then, if it does,...

Ok, makes sense. I will have to think on this. :)

Hmmmm. Glad you found a solution, but retry logic might be interesting to add.