Table of Contents

Enum QueryStatus

Namespace
DotNetQuery.Core
Assembly
DotNetQuery.Core.dll

Represents the lifecycle state of a query fetch operation.

public enum QueryStatus : byte

Fields

Failure = 3

The last fetch failed with an error.

Fetching = 1

The query is currently fetching data.

Idle = 0

The query has not been fetched yet, or has been reset.

Success = 2

The last fetch completed successfully.