Skip to content

Commit 627ba4c

Browse files
990489-: Modified content as per the review comments
1 parent a922661 commit 627ba4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blazor/rich-text-editor/http-client-instance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# HttpClientInstance in Blazor RichTextEditor Component
1111

12-
The Rich Text Editor component in Blazor enables you to utilize the `HttpClientInstance` property to append the custom HttpClient instance to all file upload requests. This approach offers flexibility in managing authentication and custom request configurations for Word Import, Word Export, PDF Export and image/audio/video insertions.
12+
The Rich Text Editor component in Blazor enables you to utilize the `HttpClientInstance` property to append the custom HttpClient instance to all file upload and download requests. This approach offers flexibility in managing authentication and custom request configurations for Word Import, Word and PDF Export and image/audio/video insertions.
1313

1414
The following example illustrates how to configure the Rich Text Editor component with HttpClient in a Blazor application.
1515

@@ -55,7 +55,7 @@ builder.Services.AddScoped(sp =>
5555
};
5656

5757
// Add custom header
58-
httpClient.DefaultRequestHeaders.Add("Custom-Header", "YourCustomValue");
58+
httpClient.DefaultRequestHeaders.Add("Custom-Header", "YourCustomValue");
5959
return httpClient;
6060
});
6161
var app = builder.Build();

0 commit comments

Comments
 (0)