0
huy.quan created
- ABP Framework version: v8.0.1
- UI Type: Blazor Server
- Database System: EF Core (SQL Server)
I'm having problem with blazor's SignalR limitation on buffers to manage incoming and outgoing messages. I want to set MaximumReceiveMessageSize is 0 for no-limitation, but I just want to do this on a specific page, not entire of application. Is it possible? What I should do in this case?
Configure<HubOptions>(options =>
{
options.AddFilter<AbpRefreshEditionIdFilter>();
options.DisableImplicitFromServicesParameters = true;
options.MaximumReceiveMessageSize = 0;
});
Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
5 Answer(s)
-
0
hi
Yes, You can try to set this option for a specified hub.
services.AddSignalR().AddHubOptions<YourHub>(options => { options.MaximumReceiveMessageSize = 0; });Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)