RemoveItem Method

MySQL Connector/Net

This method removes the specified session item from the database

Namespace:  MySql.Web.SessionState
Assembly:  MySql.Web (in MySql.Web.dll) Version: 6.2.2.0

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 object for the current request
id
Type: System..::.String
The session ID for the current request
lockId
Type: System..::.Object
The lock identifier for the current request.
item
Type: System.Web.SessionState..::.SessionStateStoreData
The session item to remove from the database.

See Also