- id
- A String that identifies the deleted cache item.
- removedItem
- An array of Byte representing the removed item data.
- reason
- A CacheItemRemovedReason value which specify the reason fr deleting this item.
| Visual Basic (Declaration) | |
|---|---|
Protected Overridable Sub OnItemRemoved( _ ByVal id As String, _ ByVal removedItem() As Byte, _ ByVal reason As CacheItemRemovedReason _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected virtual void OnItemRemoved( string id, byte[] removedItem, CacheItemRemovedReason reason ) | |
| C++/CLI | |
|---|---|
protected: virtual void OnItemRemoved( String^ id, array<byte>^ removedItem, CacheItemRemovedReason reason ) | |
Parameters
- id
- A String that identifies the deleted cache item.
- removedItem
- An array of Byte representing the removed item data.
- reason
- A CacheItemRemovedReason value which specify the reason fr deleting this item.
Target Platforms: Microsoft .NET Framework 3.0, Windows 2000, Windows XP, Windows Vista, Windows Server 2003 family, Windows Server 2008 family
Copy Code