We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3235b44 commit 17e8871Copy full SHA for 17e8871
DevTrends.MvcDonutCaching/OutputCacheOptions.cs
@@ -5,8 +5,14 @@ namespace DevTrends.MvcDonutCaching
5
[Flags]
6
public enum OutputCacheOptions
7
{
8
- None = 0x0,
+ None = 0x0,
9
+ /// <summary>
10
+ /// No matter what, never use the query string parameters to generate the cache key name
11
+ /// </summary>
12
IgnoreQueryString = 0x1,
- IgnoreFormData = 0x2,
13
14
+ /// No matter what, never use the Post data to generate the cache key name
15
16
+ IgnoreFormData = 0x2,
17
}
18
0 commit comments