Skip to content
This repository was archived by the owner on Nov 22, 2018. It is now read-only.

Commit f940d18

Browse files
committed
Feedback
1 parent c92b070 commit f940d18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Microsoft.AspNetCore.ResponseCaching/ResponseCachingOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ namespace Microsoft.AspNetCore.Builder
99
public class ResponseCachingOptions
1010
{
1111
/// <summary>
12-
/// The largest cacheable size for the response body in bytes.
12+
/// The largest cacheable size for the response body in bytes. The default is set to 1 MB.
1313
/// </summary>
1414
public long MaximumCachedBodySize { get; set; } = 1024 * 1024;
1515

1616
/// <summary>
17-
/// <c>true</c> if request paths are case-sensitive; otherwise <c>false</c>.
17+
/// <c>true</c> if request paths are case-sensitive; otherwise <c>false</c>. The default is to treat paths as case-insensitive.
1818
/// </summary>
1919
public bool CaseSensitivePaths { get; set; } = false;
2020

0 commit comments

Comments
 (0)