SignalRSwaggerGen icon indicating copy to clipboard operation
SignalRSwaggerGen copied to clipboard

Results 7 SignalRSwaggerGen issues
Sort by recently updated
recently updated
newest added

Is it possible to define the security scheme for the swagger? Instead of hard coding to basic, perhaps a parameter on SignalRHubAttribute to specify? https://github.com/Dorin-Mocan/SignalRSwaggerGen/blob/f400c31d6bd130618cdb650192bdf6caa87acfce/SignalRSwaggerGen/SignalRSwaggerGen/SignalRSwaggerGen.cs#L134 In .Net6, if we are...

I have controller and SignalR hub in the same project. For controller **example** and **remarks** from XML documentation are included in swagger documentation but not for SignalR hub class. Is...

At the link below there is a great tool to test SignalR hubs from the browser. https://github.com/gourav-d/SignalR-Web-Client A very cool feature would be automatically gerating such "web-client" for each hub...

Hi, Thanks for this awesome package! I am migrating from Swashbuckle to Nswag due to the use of FastEndpoints and I found out this package unfortunately doesn't support it. I...

Thank you for your work on this package! I was hoping for a consistent way to make consumers of my service aware of both the REST endpoints and the websockets...

```cs public record Arg( string Name, int? Age ); [SignalRHub(path: "/example-hub")] public interface IExampleHub { [SignalRMethod(operation: Operation.Get)] Task Receive(Arg arg1, Arg arg2); } ``` The generated documentation currently lists arg1...

Hello, I tried to migrate from SwaggerGen to Aspnetcore OpenApi and I achieved to make it work. I based my work on the `main` branch so it not mergeable as...