Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Deletes item data from the session data store.

Namespace:  SharedCache.WinServiceCommon.Provider.Session
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public override void RemoveItem(
	HttpContext context,
	string id,
	Object lockId,
	SessionStateStoreData item
)
Visual Basic (Declaration)
Public Overrides Sub RemoveItem ( _
	context As HttpContext, _
	id As String, _
	lockId As Object, _
	item As SessionStateStoreData _
)
Visual C++
public:
virtual void RemoveItem(
	HttpContext^ context, 
	String^ id, 
	Object^ lockId, 
	SessionStateStoreData^ item
) override

Parameters

context
Type: System.Web..::.HttpContext
The HttpContext for the current request.
id
Type: System..::.String
The session identifier for the current request.
lockId
Type: System..::.Object
The lock identifier for the current request.
item
Type: System.Web.SessionState..::.SessionStateStoreData
The SessionStateStoreData that represents the item to delete from the data store.

Remarks

[Missing <remarks> documentation for "M:SharedCache.WinServiceCommon.Provider.Session.IndexusProviderBase.RemoveItem(System.Web.HttpContext,System.String,System.Object,System.Web.SessionState.SessionStateStoreData)"]

See Also