HelpBot Assistant

How can I help you?

Increase the connection buffer size in Blazor PDF Viewer Component

26 Aug 20251 minute to read

The Syncfusion® Blazor PDF Viewer component allows to increase the connection buffer size by adding the below service in program.cs file if the size of the PDFViewer is too large.

builder.Services.AddServerSideBlazor().AddHubOptions(o => { o.MaximumReceiveMessageSize = 102400000; });

NOTE

View sample in GitHub.