| File: FileServerOptions.cs | Web Access |
| Project: src\aspnetcore\src\Middleware\StaticFiles\src\Microsoft.AspNetCore.StaticFiles.csproj (Microsoft.AspNetCore.StaticFiles) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.StaticFiles.Infrastructure; namespace Microsoft.AspNetCore.Builder; /// <summary> /// Options for all of the static file middleware components /// </summary> public class FileServerOptions : SharedOptionsBase { /// <summary> /// Creates a combined options class for all of the static file middleware components. /// </summary> public FileServerOptions() : base(new SharedOptions()) { StaticFileOptions = new StaticFileOptions(SharedOptions); DirectoryBrowserOptions = new DirectoryBrowserOptions(SharedOptions); DefaultFilesOptions = new DefaultFilesOptions(SharedOptions); EnableDefaultFiles = true; } /// <summary> /// Options for configuring the StaticFileMiddleware. /// </summary> public StaticFileOptions StaticFileOptions { get; private set; } /// <summary> /// Options for configuring the DirectoryBrowserMiddleware. /// </summary> public DirectoryBrowserOptions DirectoryBrowserOptions { get; private set; } /// <summary> /// Options for configuring the DefaultFilesMiddleware. /// </summary> public DefaultFilesOptions DefaultFilesOptions { get; private set; } /// <summary> /// Directory browsing is disabled by default. /// </summary> public bool EnableDirectoryBrowsing { get; set; } /// <summary> /// Default files are enabled by default. /// </summary> public bool EnableDefaultFiles { get; set; } }