KeyValueStoreReplica.IgnoreSequenceNumberCheck Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that sequence number checking should not occur.
public const long IgnoreSequenceNumberCheck = 0;
val mutable IgnoreSequenceNumberCheck : int64
Public Const IgnoreSequenceNumberCheck As Long = 0
Field Value
Value = 0Remarks
Can be used in APIs accepting a check sequence number parameter to indicate that sequence number checking should not occur:
- Update(TransactionBase, String, Byte[], Int64)
- Remove(TransactionBase, String, Int64)
- TryUpdate(TransactionBase, String, Byte[], Int64)
- TryRemove(TransactionBase, String, Int64)
This is equivalent to calling API overloads that do not have a check sequence number parameter:
- Update(TransactionBase, String, Byte[])
- Remove(TransactionBase, String)
- TryUpdate(TransactionBase, String, Byte[])
- TryRemove(TransactionBase, String)