コード例 #1
0
 public static string ToHttpHeader(this CacheControlScope responseCacheType)
 => responseCacheType == CacheControlScope.Public ? "public" : "private";
コード例 #2
0
 public CacheControlPayload(int maxAge, CacheControlScope scope)
 {
     MaxAge = maxAge;
     Scope  = scope;
 }
コード例 #3
0
 public CacheControlAttribute(int maxAge, CacheControlScope scope = CacheControlScope.Public) : base(MetadataKey, new CacheControlPayload(maxAge, scope))
 {
 }