Amazing Video please make a fullstack application using react and dotnet webapi
@kehindeoluwadamilare55942 ай бұрын
Nice Video from Nigeria...
@MircoBenthien2 ай бұрын
Nice Comment from germany 🤙
@kehindeoluwadamilare55942 ай бұрын
@@MircoBenthien It's nice using with VSCode
@keithjairam84522 ай бұрын
Great content
@asesorwebvideos2 ай бұрын
Gracias saludos desde Chile....
@arabiceasycodeАй бұрын
i love this video
@sabarimanikandan1926 күн бұрын
Hey man, I have been using fast endpoints as well, I am facing issues with adding pre processors, I have a global and a endpoint level preprocessor, global preprocessor (to validate headers) sends a response if header validation fails, but the request it is not stopping there, it still executes other pre processors as well before returning the response, I want it to be stop the execution. Could you help me with this?
@MircoBenthien25 күн бұрын
Yea I ran into that as well. That is just how it works, you need to check if the response already started like this. if(ctx.HttpContext.Response.HasStarted) return; The pink box explains it fast-endpoints.com/docs/pre-post-processors#short-circuiting-execution