Client.Increment Method

MySQL Connector/Net

ClientIncrement Method
Increments the value associated with a key by the given amount.

Namespace: MySql.Data.MySqlClient.Memcached
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public abstract void Increment(
	string key,
	int amount
)
Public MustOverride Sub Increment ( 
	key As String,
	amount As Integer
)
public:
virtual void Increment(
	String^ key, 
	int amount
) abstract
abstract Increment : 
        key : string * 
        amount : int -> unit 

Parameters

key
Type: SystemString
The key associated with the value to increment.
amount
Type: SystemInt32
The amount to increment the value.
See Also