HttpResponseHeaderCollection.CacheControl 属性

定义

获取对象的 HttpCacheDirectiveHeaderValueCollection ,这些对象表示 HTTP 响应上的 Cache-Control HTTP 标头的值。

public:
 property HttpCacheDirectiveHeaderValueCollection ^ CacheControl { HttpCacheDirectiveHeaderValueCollection ^ get(); };
HttpCacheDirectiveHeaderValueCollection CacheControl();
public HttpCacheDirectiveHeaderValueCollection CacheControl { get; }
var httpCacheDirectiveHeaderValueCollection = httpResponseHeaderCollection.cacheControl;
Public ReadOnly Property CacheControl As HttpCacheDirectiveHeaderValueCollection

属性值

对象的集合,这些对象表示 HTTP 响应上的 Cache-Control HTTP 标头的值。 空集合表示标头不存在。

注解

CacheControl 属性表示 HTTP 响应上的 Cache-Control HTTP 标头的值。

Cache-Control 标头的 HttpCacheDirectiveHeaderValueCollection 中的某些对象使用 Windows.Foundation.TimeSpan 结构。 使用 .NET 编程时,此结构是隐藏的,开发人员应使用 System.TimeSpan 结构。 该值可以为 null,因为它被键入为 TimeSpan? (可为 null 的 TimeSpan) 。

在 JavaScript 中,此结构作为值而不是对象进行访问。 例如,使用 var a = 10000,而不是 var a = { duration: 10000 }

注意

在 JavaScript 中,此结构被视为毫秒间隔数,而不是 100 纳秒间隔数。

有关更多详细信息,请参阅 Windows.Foundation.TimeSpan 接口。

适用于

另请参阅