←Select platform

DeleteAll Method

Summary

Deletes the specified items from the cache.

Syntax

C#
VB
Java
C++
public virtual void DeleteAll( 
   string regionName, 
   ISet<string> keys 
) 
Public Overridable Sub DeleteAll( 
   ByVal regionName As String, 
   ByVal keys As System.Collections.Generic.ISet(Of String) 
) 
public:  
   virtual void DeleteAll( 
      String^ regionName, 
      System::Collections::Generic::ISet<String^>^ keys 
   ) 
public void deleteAll(String regionName, Iterable<String> keys) 

Parameters

regionName

Optional region name.

keys

Cache item keys to delete.

Remarks

The default implementation will iterate the keys and call DeleteItem on each. Derived class can implement a more optimized approach if needed.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Caching Assembly