|
AsImpL 1.0
Asynchronous Importer and run-time Loader for Unity
|
Interface for classes that access the filesystem. More...
Public Member Functions | |
| byte[] | ReadAllBytes (string path) |
| Reads all data from the specified path into a byte array. More... | |
| string[] | ReadAllLines (string path) |
| Reads all lines in the specified file into an array of strings. More... | |
| FileStream | OpenRead (string path) |
| Opens the file at the specified path for reading. More... | |
| IEnumerator | DownloadUri (string uri, bool notifyErrors) |
| Downloads the specified URI. More... | |
| IEnumerator | DownloadTexture (string uri) |
| Downloads the specified URI as texture. More... | |
Interface for classes that access the filesystem.
| IEnumerator AsImpL.IFilesystem.DownloadTexture | ( | string | uri | ) |
Downloads the specified URI as texture.
| uri | The URI to download. |
Implemented in AsImpL.FileFilesystem.
| IEnumerator AsImpL.IFilesystem.DownloadUri | ( | string | uri, |
| bool | notifyErrors | ||
| ) |
Downloads the specified URI.
| uri | The URI to download. |
| notifyErrors | Whether to notify of errors. |
Implemented in AsImpL.FileFilesystem.
| FileStream AsImpL.IFilesystem.OpenRead | ( | string | path | ) |
Opens the file at the specified path for reading.
| path |
Implemented in AsImpL.FileFilesystem.
| byte[] AsImpL.IFilesystem.ReadAllBytes | ( | string | path | ) |
Reads all data from the specified path into a byte array.
| path |
Implemented in AsImpL.FileFilesystem.
| string[] AsImpL.IFilesystem.ReadAllLines | ( | string | path | ) |
Reads all lines in the specified file into an array of strings.
| path |
Implemented in AsImpL.FileFilesystem.