MemoryCache.Contains(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether a cache entry exists in the cache.
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
Parameters
- key
- String
A unique identifier for the cache entry to search for.
- regionName
- String
A named region in the cache to which a cache entry was added. Do not pass a value for this parameter. This parameter is null
by default, because the MemoryCache class does not implement regions.
Returns
true
if the cache contains a cache entry whose key matches key
; otherwise, false
.
Exceptions
key
is null
.
regionName
is not null
.