MemoryCache.Contains(String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定缓存中是否存在某个缓存项。
public override bool Contains (string key, string regionName = default);
override this.Contains : string * string -> bool
Public Overrides Function Contains (key As String, Optional regionName As String = Nothing) As Boolean
参数
- key
- String
要搜索的缓存项的唯一标识符。
- regionName
- String
缓存中的一个添加了缓存项的命名区域。 不要为该参数传递值。 默认情况下,此参数为null
,因为 MemoryCache 类未实现区域。
返回
如果缓存中包含其键与 key
匹配的缓存项,则为 true
;否则为 false
。
例外
key
为 null
。
regionName
不是 null
。