// 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.AspNet.Http; using Microsoft.AspNet.StaticFiles; namespace Microsoft.AspNet.Builder { /// /// Extension methods for the DirectoryBrowserMiddleware /// public static class DirectoryBrowserExtensions { /// /// Enable directory browsing on the current path /// /// /// public static IApplicationBuilder UseDirectoryBrowser(this IApplicationBuilder builder) { if (builder == null) { throw new ArgumentNullException(nameof(builder)); } return builder.UseDirectoryBrowser(new DirectoryBrowserOptions()); } /// /// Enables directory browsing for the given request path /// /// /// The relative request path. /// public static IApplicationBuilder UseDirectoryBrowser(this IApplicationBuilder builder, string requestPath) { if (builder == null) { throw new ArgumentNullException(nameof(builder)); } return builder.UseDirectoryBrowser(new DirectoryBrowserOptions() { RequestPath = new PathString(requestPath) }); } /// /// Enable directory browsing with the given options /// /// /// /// public static IApplicationBuilder UseDirectoryBrowser(this IApplicationBuilder builder, DirectoryBrowserOptions options) { if (builder == null) { throw new ArgumentNullException(nameof(builder)); } if (options == null) { throw new ArgumentNullException(nameof(options)); } return builder.UseMiddleware(options); } } }