TINMAN 3D / REALTIME TERRAIN
Software Development Kit - User Manual

enum IOError in Tinman.Core.IO

Enumeration of well-known I/O errors.

enum IOError  

Items

NotFound = 0

A file or directory has not been found.

EndOfFile = 1

The end of a file has been reached.

BadPath = 2

The given file or directory path name is invalid (e.g. bad characters).

DiskFull = 3

The storage device is full.

AccessDenied = 4

Access to the I/O resource is denied (missing privileges, device is not ready, etc.).

AccessNoRead = 5

Read access to the I/O resource is not allowed resp. possible.

AccessNoWrite = 6

Write access to the I/O resource is not allowed resp. possible.

SharingViolation = 7

Another process is already accessing the I/O resource in a conflicting way.

TimeOut = 8

The requested I/O operation has timed out.

Cancelled = 9

The I/O operation has been cancelled.

Corrupt = 10

The binary format of the I/O resource is corrupt resp. does not follow the format specifications.

Unsupported = 11

The binary format of the I/O resource is valid, but the used version is not supported.

Other = 12

Some other I/O error has occurred.