Skip to content

Commit 62925c6

Browse files
authored
Remove unnecessary information (#34039)
Fixes #34038
1 parent ccb597e commit 62925c6

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

aspnetcore/blazor/file-downloads.md

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,6 @@ This article explains how to download files in Blazor apps.
1616

1717
## File downloads
1818

19-
Files can be downloaded from the app's own static assets or from any other location:
20-
21-
:::moniker range=">= aspnetcore-9.0"
22-
23-
* ASP.NET Core apps use Map Static Assets routing endpoint conventions or Static File Middleware to serve files to clients of server-side apps. For more information, see <xref:blazor/fundamentals/static-files>.
24-
* The guidance in this article also applies to other types of file servers that don't use .NET, such as Content Delivery Networks (CDNs).
25-
26-
:::moniker-end
27-
28-
:::moniker range="< aspnetcore-9.0"
29-
30-
* ASP.NET Core apps use [Static File Middleware](xref:blazor/fundamentals/static-files) to serve files to clients of server-side apps.
31-
* The guidance in this article also applies to other types of file servers that don't use .NET, such as Content Delivery Networks (CDNs).
32-
33-
:::moniker-end
34-
3519
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:
3620

3721
* [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).
@@ -265,6 +249,7 @@ For more information on CORS with ASP.NET Core apps and other Microsoft products
265249
266250
## Additional resources
267251
252+
* <xref:blazor/fundamentals/static-files>
268253
* <xref:blazor/js-interop/index>
269254
* <xref:blazor/js-interop/javascript-location>
270255
* <xref:blazor/js-interop/ssr>

0 commit comments

Comments
 (0)