1 write to ResponseExpires
System (1)
net\System\Net\Cache\HttpRequestCacheValidator.cs (1)
757
ResponseExpires
= date;
8 references to ResponseExpires
System (8)
net\System\Net\Cache\_Rfc2616CacheValidators.cs (6)
274
(ctx.
ResponseExpires
!= DateTime.MinValue &&
275
(ctx.Policy.MinFresh > TimeSpan.Zero && (ctx.
ResponseExpires
- DateTime.UtcNow) < ctx.Policy.MinFresh) ||
276
(ctx.Policy.MaxStale > TimeSpan.Zero && (DateTime.UtcNow - ctx.
ResponseExpires
) > ctx.Policy.MaxStale)))
366
ctx.CacheEntry.ExpiresUtc = ctx.
ResponseExpires
;
1181
if ((ctx.CacheExpires != ctx.
ResponseExpires
) ||
1208
if (ctx.
ResponseExpires
!= DateTime.MinValue) {
net\System\Net\Cache\HttpRequestCacheValidator.cs (2)
515
if (
ResponseExpires
!= DateTime.MinValue) {
516
CacheEntry.ExpiresUtc =
ResponseExpires
;