This version of Unity is unsupported.

ReadStatus

enumeration

Description

The state of an asynchronous file request.

These enumerations represent the raw underlying states of an asynchronous file request.

When submitted all requests enter the ReadStatus.InProgress state while they are pending execution or in progress. On completion the state will become one of ReadStatus.Complete, ReadStatus.Truncated or ReadStatus.Failed.

A truncated read occurs when attempting to access beyond the end of a file.

Properties

CompleteThe asynchronous file request completed successfully and all read operations within it were completed in full.
InProgressThe asynchronous file request is in progress.
FailedOne or more of the asynchronous file request's read operations have failed.
TruncatedThe asynchronous file request has completed but one or more of the read operations were truncated.