ArchiveTableSummaryTKey, TValueContains Method
Determines if this table might contain data for the keys provided.
Namespace: SnapDB.Snap.ServicesAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public bool Contains(
TKey startKey,
TKey stopKey
)
Public Function Contains (
startKey As TKey,
stopKey As TKey
) As Boolean
public:
bool Contains(
TKey startKey,
TKey stopKey
)
function Contains(startKey, stopKey);
- startKey TKey
- The start key of the range to check.
- stopKey TKey
- The stop key of the range to check.
Booleantrue if the specified key range is contained within the archive list; otherwise,
false.
This method checks if the specified key range, defined by startKey and stopKey,
is contained within the archive list. If the archive file is empty, it will always be searched.