Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 1.82 KB

clear-element-for-namedcaches.md

File metadata and controls

58 lines (40 loc) · 1.82 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: <clear> Element for <namedCaches>
<clear> Element for <namedCaches>
03/30/2017
<clear> element for <namedCaches>
clear element for <namedCaches>
ea01a858-65da-4348-800f-5e3df59d4d79

<clear> Element for <namedCaches>

Clears all namedCache entries in the namedCaches collection for a memory cache.

<configuration>
  <system.runtime.caching>
    <memoryCache>
      <namedCaches>
        <clear>

Syntax

<namedCaches>  
    <clear name="Default" />  
    <!-- child elements -->  
 </namedCaches>  

Type

Type

Attributes and Elements

The following sections describe attributes, child elements, and parent elements.

Attributes

None

Child Elements

None

Parent Elements

Element Description
<namedCaches> Contains a collection of configuration settings for the named xref:System.Runtime.Caching.MemoryCache instances.

Remarks

The clear element clears all namedCache entries in the named cache collection for a memory cache. You can use the clear element before you use the add element to add a new named cache entry in order to be certain there are no other named caches in the collection.

See also