Decrement Method

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Decrements the value associated with a key by the given amount.

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

Syntax

C#
public abstract void Decrement(
	string key,
	int amount
)
Visual Basic
Public MustOverride Sub Decrement ( _
	key As String, _
	amount As Integer _
)
Visual C++
public:
virtual void Decrement(
	String^ key, 
	int amount
) abstract

Parameters

key
Type: System..::..String
The key associated with the value to decrement.
amount
Type: System..::..Int32
The amount to decrement the value.

See Also