// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.StaticFiles; using Microsoft.Extensions.Options; namespace Microsoft.AspNetCore.Builder { /// /// Extension methods for the DefaultFilesMiddleware /// public static class DefaultFilesExtensions { /// /// Enables default file mapping on the current path /// /// /// public static IApplicationBuilder UseDefaultFiles(this IApplicationBuilder app) { if (app == null) { throw new ArgumentNullException(nameof(app)); } return app.UseMiddleware(); } /// /// Enables default file mapping for the given request path /// /// /// The relative request path. /// public static IApplicationBuilder UseDefaultFiles(this IApplicationBuilder app, string requestPath) { if (app == null) { throw new ArgumentNullException(nameof(app)); } return app.UseDefaultFiles(new DefaultFilesOptions { RequestPath = new PathString(requestPath) }); } /// /// Enables default file mapping with the given options /// /// /// /// public static IApplicationBuilder UseDefaultFiles(this IApplicationBuilder app, DefaultFilesOptions options) { if (app == null) { throw new ArgumentNullException(nameof(app)); } if (options == null) { throw new ArgumentNullException(nameof(options)); } return app.UseMiddleware(Options.Create(options)); } } }