Interface IDownload
Provides a mechanism to inspect the progress and result of a download or file access request
Inherited Members
Namespace: Unity.Cloud.Gltfast.Loading
Assembly: Unity.Cloud.Gltfast.dll
Syntax
[MovedFrom(true, "GLTFast.Loading", "glTFast", null)]
public interface IDownload : IDisposable
Properties
Data
Resulting data as NativeArray (does not allocate memory).
Declaration
NativeArray<byte>.ReadOnly Data { get; }
Property Value
| Type | Description |
|---|---|
| NativeArray<byte>.ReadOnly |
Error
Error message in case the request failed. Null otherwise.
Declaration
string Error { get; }
Property Value
| Type | Description |
|---|---|
| string |
Success
True, if the request was successful
Declaration
bool Success { get; }
Property Value
| Type | Description |
|---|---|
| bool |