KeyValueStoreReplica.Remove Method

Definition

Overloads

Remove(TransactionBase, String)

Removes the value indexed by the specified key.

Remove(TransactionBase, String, Int64)

Removes the value indexed by the specified key.

Remove(TransactionBase, String)

Removes the value indexed by the specified key.

public void Remove (System.Fabric.TransactionBase transactionBase, string key);
member this.Remove : System.Fabric.TransactionBase * string -> unit
Public Sub Remove (transactionBase As TransactionBase, key As String)

Parameters

transactionBase
TransactionBase

The transaction instance.

key
String

The key, or index, of the value to be removed (as a string). Limited to 800 characters in length.

Applies to

Remove(TransactionBase, String, Int64)

Removes the value indexed by the specified key.

public void Remove (System.Fabric.TransactionBase transactionBase, string key, long checkSequenceNumber);
member this.Remove : System.Fabric.TransactionBase * string * int64 -> unit
Public Sub Remove (transactionBase As TransactionBase, key As String, checkSequenceNumber As Long)

Parameters

transactionBase
TransactionBase

The transaction instance.

key
String

The key, or index, of the value to be removed (as a string). Limited to 800 characters in length.

checkSequenceNumber
Int64

The expected sequence number of the key to be removed.

Applies to