Prepend Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Prepends the data to the existing data for the associated key.

Namespace: MySql.Data.MySqlClient.Memcached
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public abstract void Prepend(
	string key,
	Object data
)
Visual Basic
Public MustOverride Sub Prepend ( _
	key As String, _
	data As Object _
)
Visual C++
public:
virtual void Prepend(
	String^ key, 
	Object^ data
) abstract

Parameters

key
Type: System..::..String
The key for identifying the entry.
data
Type: System..::..Object
The data to append with the data associated with the key.

See Also