Skip to content

Commit 17e8871

Browse files
committed
Added docstrings for OutputCacheOptions.
1 parent 3235b44 commit 17e8871

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

DevTrends.MvcDonutCaching/OutputCacheOptions.cs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,14 @@ namespace DevTrends.MvcDonutCaching
55
[Flags]
66
public enum OutputCacheOptions
77
{
8-
None = 0x0,
8+
None = 0x0,
9+
/// <summary>
10+
/// No matter what, never use the query string parameters to generate the cache key name
11+
/// </summary>
912
IgnoreQueryString = 0x1,
10-
IgnoreFormData = 0x2,
13+
/// <summary>
14+
/// No matter what, never use the Post data to generate the cache key name
15+
/// </summary>
16+
IgnoreFormData = 0x2,
1117
}
1218
}

0 commit comments

Comments
 (0)