Unity - Scripting API: Unity.IO.LowLevel.Unsafe.ReadHandle.GetBytesRead
Success!
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
Submission failed
For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
Declaration
public long GetBytesRead();
Returns
long The total number of bytes read by the asynchronous file read request.
Description
Returns the total number of bytes read by all the ReadCommand operations the asynchronous file read request.
Declaration
public long GetBytesRead(uint readCommandIndex);
Parameters
| Parameter | Description |
|---|---|
| readCommandIndex | The index of the ReadCommand for which to retrieve the number of bytes read. |
Returns
long The number of bytes read for the specified ReadCommand.
Description
Returns the total number of bytes read for a specific ReadCommand index.