Arvin Kahbazi

Results 22 comments of Arvin Kahbazi

@basvd You are correct. I'm afraid theoretically this is a bug, when the first log of the request happens in some concurrent tasks. But I'm wondering if you have ever...

> Yeah something like MediatR.Extensions.AspNetCore.Http ? @mumby0168 This is what I have developed in https://github.com/Kahbazi/MediatR.AspNetCore.Endpoints You can register `IRequest` directly to the ASP.NET Core routing without Controllers. ```csharp public class...

> Ah that is really cool, how do you handle mapping query params to an object? I haven't implement that yet. > Yeah that us pretty cool. And how would...

At the moment only route binding is supported for GET requests.

Hi @dinujubd! Thanks for reporting this issue. This is a bug that needs to be fixed. > Apart from that, is there any particular reason to use Nswag instead of...

@dinujubd let's keep this issue be open until I fix the swagger.

@Rick-Anderson I have not write any docs yet, but I would like to give it a try. I'm not familiar with this repo. Where should I start? Are there any...

@Rick-Anderson I created a [gist](https://gist.github.com/Kahbazi/94beef16aa145503d8407b56a46efd6c) of how to use RateLimiting, but it's basically what you already have in the sample. The sample is limiting the endpoints by IP and by...

> Is this even possible today with controllers? Yes it is. In Swashbuckle it will check if the `ControllerActionDescriptor.MethodInfo` or `ControllerActionDescriptor.MethodInfo.DeclaringType` has `ObsoleteAttribute`. https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/95cb4d370e08e54eb04cf14e7e6388ca974a686e/src/Swashbuckle.AspNetCore.SwaggerGen/SwaggerGenerator/SwaggerGenerator.cs#L145 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/95cb4d370e08e54eb04cf14e7e6388ca974a686e/src/Swashbuckle.AspNetCore.SwaggerGen/SwaggerGenerator/ApiDescriptionExtensions.cs#L24 And in NSwag it will...

@captainsafia I'm interested in doing this. Do you accept PR for this issue at the moment?