CacheControlHeaderValue.MaxStaleLimit 属性

定义

HTTP 客户端愿意接受已超出其过期时间的响应的最大时间值(以秒为单位)。

public:
 property Nullable<TimeSpan> MaxStaleLimit { Nullable<TimeSpan> get(); void set(Nullable<TimeSpan> value); };
public TimeSpan? MaxStaleLimit { get; set; }
member this.MaxStaleLimit : Nullable<TimeSpan> with get, set
Public Property MaxStaleLimit As Nullable(Of TimeSpan)

属性值

时间值(以秒计)。

注解

此属性表示在 HTTP 请求的缓存控制标头字段中分配给“max-stale”指令的值。

如果为 MaxStaleLimit 属性分配了一个非零值,则客户端愿意接受超过其过期时间不超过指定秒数的响应。 如果将值零分配给 MaxStaleLimit 属性,则客户端愿意接受任何年龄的过时响应。

适用于