WebCache.Set(String, Object, Int32, Boolean) 方法

定义

WebCache 对象插入项。

public static void Set (string key, object value, int minutesToCache = 20, bool slidingExpiration = true);
static member Set : string * obj * int * bool -> unit
Public Shared Sub Set (key As String, value As Object, Optional minutesToCache As Integer = 20, Optional slidingExpiration As Boolean = true)

参数

key
String

缓存项的标识符。

value
Object

要插入缓存中的数据。

minutesToCache
Int32

可选。 在缓存中保留项的分钟数。 默认值为 20。

slidingExpiration
Boolean

可选。 如果为 true,则指示每次访问该项时重置缓存项过期时间;如果为 false,则指示过期时间基于该项添加到缓存中的绝对时间。 默认值为 true。 在这种情况下,如果还使用 minutesToCache 参数的默认值,则缓存项将在上次访问后 20 分钟过期。

例外

已启用滑动过期,且 的值 minutesToCache 大于一年。

适用于