Client.Prepend Method

MySQL Connector/Net

ClientPrepend Method
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.9.9
Syntax
public abstract void Prepend(
	string key,
	Object data
)
Public MustOverride Sub Prepend ( 
	key As String,
	data As Object
)
public:
virtual void Prepend(
	String^ key, 
	Object^ data
) abstract
abstract Prepend : 
        key : string * 
        data : Object -> unit 

Parameters

key
Type: SystemString
The key for identifying the entry.
data
Type: SystemObject
The data to append with the data associated with the key.
See Also