Possible error types.
| C# |
public enum ErrorType
| Member | Description |
|---|---|
| NoError |
There was no error.
|
| InvalidFilePath |
The file path entered was invalid.
|
| InvalidImageExtension |
The image file extension was invalid.
|
| InvalidMimeType |
The image mime type was invalid.
|
| TooLarge |
The file size was larger than the maximum allowed.
|
| FileExists |
A file with the same name already exists.
|
| InsufficientDiskSpace |
There was insufficient disk space available.
|
| Unknown |
The error reason is unknown.
|