本文整理汇总了C#中IResponse.EndNotModified方法的典型用法代码示例。如果您正苦于以下问题:C# IResponse.EndNotModified方法的具体用法?C# IResponse.EndNotModified怎么用?C# IResponse.EndNotModified使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IResponse
的用法示例。
在下文中一共展示了IResponse.EndNotModified方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandleCacheResponses
public void HandleCacheResponses(IRequest req, IResponse res, object response)
{
if (req.IsInProcessRequest())
return;
if (response is Exception || res.StatusCode >= 300)
return;
var cacheInfo = req.GetItem(Keywords.CacheInfo) as CacheInfo;
if (cacheInfo != null && cacheInfo.CacheKey != null)
{
if (CacheAndWriteResponse(cacheInfo, req, res, response))
return;
}
var httpResult = response as HttpResult;
if (httpResult == null)
return;
cacheInfo = httpResult.ToCacheInfo();
if ((req.Verb != HttpMethods.Get && req.Verb != HttpMethods.Head) ||
(httpResult.StatusCode != HttpStatusCode.OK && httpResult.StatusCode != HttpStatusCode.NotModified))
return;
if (httpResult.LastModified != null)
httpResult.Headers[HttpHeaders.LastModified] = httpResult.LastModified.Value.ToUniversalTime().ToString("r");
if (httpResult.ETag != null)
httpResult.Headers[HttpHeaders.ETag] = httpResult.ETag.Quoted();
if (httpResult.Expires != null)
httpResult.Headers[HttpHeaders.Expires] = httpResult.Expires.Value.ToUniversalTime().ToString("r");
if (httpResult.Age != null)
httpResult.Headers[HttpHeaders.Age] = httpResult.Age.Value.TotalSeconds.ToString(CultureInfo.InvariantCulture);
var alreadySpecifiedCacheControl = httpResult.Headers.ContainsKey(HttpHeaders.CacheControl);
if (!alreadySpecifiedCacheControl)
{
var cacheControl = BuildCacheControlHeader(cacheInfo);
if (cacheControl != null)
httpResult.Headers[HttpHeaders.CacheControl] = cacheControl;
}
if (req.ETagMatch(httpResult.ETag) || req.NotModifiedSince(httpResult.LastModified))
{
res.EndNotModified();
}
}