• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Method Remove

Remove()

Removes the key from cache after executing the entry processor.

Declaration
void Remove()
Examples

Example removes entry from cache after processing

if (entry.Key.Contains("Product"))
{
   entry.Remove();
   return "Removed.";
}
Back to top Copyright © 2017 Alachisoft