-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Api docs for ResponseCaching #26531
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Api docs for ResponseCaching #26531
Conversation
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System.ComponentModel; | ||
|
||
namespace Microsoft.AspNetCore.ResponseCaching | ||
{ | ||
/// <summary> | ||
/// Options for configuring the <see cref="ResponseCachingMiddleware"/>. | ||
/// </summary> | ||
public class ResponseCachingOptions |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- For the
SizeLimit
property below, do you think it's valuable to explain what happens once the limit is hit? - For
MaximumBodySize
should we add what happens if the limit is exceeded?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
Co-authored-by: Pranav K <[email protected]>
@pranavkm 🆙📅 |
Hello @JunTaoLuo! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
Part of #26397.
Breaking it up into smaller PRs for review. This one covers ResponseCaching, StaticFiles, HostFilter and HttpsPolicy.