11 references to StaticFileMiddleware
Microsoft.AspNetCore.StaticFiles (11)
StaticFileExtensions.cs (2)
29
return app.UseMiddleware<
StaticFileMiddleware
>();
63
return app.UseMiddleware<
StaticFileMiddleware
>(Options.Create(options));
StaticFileMiddleware.cs (1)
44
_logger = loggerFactory.CreateLogger<
StaticFileMiddleware
>();
StaticFilesEndpointRouteBuilderExtensions.cs (8)
25
/// <see cref="
StaticFileMiddleware
"/> that attempts to serve the file specified by <paramref name="filePath"/>.
38
/// The default <see cref="StaticFileOptions"/> for the <see cref="
StaticFileMiddleware
"/> will be used.
62
/// <see cref="
StaticFileMiddleware
"/> that attempts to serve the file specified by <paramref name="filePath"/>.
66
/// <param name="options"><see cref="StaticFileOptions"/> for the <see cref="
StaticFileMiddleware
"/>.</param>
98
/// <see cref="
StaticFileMiddleware
"/> that attempts to serve the file specified by <paramref name="filePath"/>.
112
/// The default <see cref="StaticFileOptions"/> for the <see cref="
StaticFileMiddleware
"/> will be used.
141
/// <see cref="
StaticFileMiddleware
"/> that attempts to serve the file specified by <paramref name="filePath"/>.
146
/// <param name="options"><see cref="StaticFileOptions"/> for the <see cref="
StaticFileMiddleware
"/>.</param>