71 lines
2.2 KiB
C#
71 lines
2.2 KiB
C#
// 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;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Microsoft.AspNet.Builder
|
|
{
|
|
/// <summary>
|
|
/// Extension methods for the StaticFileMiddleware
|
|
/// </summary>
|
|
public static class StaticFileExtensions
|
|
{
|
|
/// <summary>
|
|
/// Enables static file serving for the current request path
|
|
/// </summary>
|
|
/// <param name="app"></param>
|
|
/// <returns></returns>
|
|
public static IApplicationBuilder UseStaticFiles(this IApplicationBuilder app)
|
|
{
|
|
if (app == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(app));
|
|
}
|
|
|
|
return app.UseMiddleware<StaticFileMiddleware>();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enables static file serving for the given request path
|
|
/// </summary>
|
|
/// <param name="app"></param>
|
|
/// <param name="requestPath">The relative request path.</param>
|
|
/// <returns></returns>
|
|
public static IApplicationBuilder UseStaticFiles(this IApplicationBuilder app, string requestPath)
|
|
{
|
|
if (app == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(app));
|
|
}
|
|
|
|
return app.UseStaticFiles(new StaticFileOptions
|
|
{
|
|
RequestPath = new PathString(requestPath)
|
|
});
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enables static file serving with the given options
|
|
/// </summary>
|
|
/// <param name="app"></param>
|
|
/// <param name="options"></param>
|
|
/// <returns></returns>
|
|
public static IApplicationBuilder UseStaticFiles(this IApplicationBuilder app, StaticFileOptions options)
|
|
{
|
|
if (app == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(app));
|
|
}
|
|
if (options == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(options));
|
|
}
|
|
|
|
return app.UseMiddleware<StaticFileMiddleware>(Options.Create(options));
|
|
}
|
|
}
|
|
}
|