Skip to content

Commit 31449c3

Browse files
authored
Clarify the guidance is for downloading (not opening) files (dotnet#32165)
1 parent d24356d commit 31449c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aspnetcore/blazor/file-downloads.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Files can be downloaded from the app's own static assets or from any other locat
2121
* ASP.NET Core apps use [Static File Middleware](xref:fundamentals/static-files) to serve files to clients of server-side apps.
2222
* The guidance in this article also applies to other types of file servers that don't use .NET, such as Content Delivery Networks (CDNs).
2323

24-
This article covers approaches for the following scenarios:
24+
This article covers approaches for the following scenarios, where a file shouldn't be opened by a browser but downloaded and saved on the client:
2525

2626
* [Stream file content to a raw binary data buffer on the client](#download-from-a-stream): Typically, this approach is used for relatively small files (\< 250 MB).
2727
* [Download a file via a URL without streaming](#download-from-a-url): Usually, this approach is used for relatively large files (> 250 MB).

0 commit comments

Comments
 (0)