Hi Zeun,
Greetings from Syncfusion support.
We have analyzed your query and you suggested us to expose the HttpClient for your customization. To achieve this we suggest you to configure the HttpClient before registering the Syncfusion service in startup project. If HttpClient is already registered then we won’t create a new instance. We will use the already registered HttpClient.
|
public void ConfigureServices(IServiceCollection services)
{
services.AddScoped<HttpClient>(); //configure HttpClient here
services.AddSyncfusionBlazor();
} |
Also please refer the below documentation which may help you to achieve your requirement.
Regards,
Jeevakanth SP.