// 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 Microsoft.AspNetCore.Http; using Microsoft.Extensions.FileProviders; namespace Microsoft.AspNetCore.StaticFiles { /// /// Contains information about the request and the file that will be served in response. /// public class StaticFileResponseContext { /// /// The request and response information. /// public HttpContext Context { get; internal set; } /// /// The file to be served. /// public IFileInfo File { get; internal set; } } }