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.";
}