Table of Contents

Interface IScanningCursor

Namespace
StackExchange.Redis
Assembly
StackExchange.Redis.StrongName.dll

Represents a resumable, cursor-based scanning operation

public interface IScanningCursor

Properties

Cursor

Returns the cursor that represents the active page of results (not the pending/next page of results as returned by SCAN/HSCAN/ZSCAN/SSCAN)

long Cursor { get; }

Property Value

long

PageOffset

The offset into the current page

int PageOffset { get; }

Property Value

int

PageSize

The page size of the current operation

int PageSize { get; }

Property Value

int