BlackBerry Dynamics for .NET Maui  12.0.0.9
Runtime library for .NET Maui applications
BBDXamarinForms.Common.Interfaces.SecureStorage.Enums Namespace Reference

Enumerations

enum  BBDFileErrorEnum {
  BBDFileErrorEnum.NoError = 0, BBDFileErrorEnum.NotFoundError = 1, BBDFileErrorEnum.SecurityError = 2,
  BBDFileErrorEnum.AbortError = 3, BBDFileErrorEnum.NotReadableError = 4, BBDFileErrorEnum.EncodingError = 5,
  BBDFileErrorEnum.NoModificationAllowedError = 6, BBDFileErrorEnum.InvalidStateError = 7, BBDFileErrorEnum.SyntaxError = 8,
  BBDFileErrorEnum.InvalidModificationError = 9, BBDFileErrorEnum.QuotaExceededError = 10, BBDFileErrorEnum.TypeMismatchError = 11,
  BBDFileErrorEnum.PathExistsError = 12
}
 Describes error codes when working with secure file system. Exceptions.BBDFileSystemException class. More...
 
enum  ExistenceCheckResultEnum { ExistenceCheckResultEnum.NotFound = 0, ExistenceCheckResultEnum.FileExists = 1, ExistenceCheckResultEnum.FolderExists = 2 }
 Describes the result of a file or folder existence check. More...
 

Enumeration Type Documentation

◆ BBDFileErrorEnum

Describes error codes when working with secure file system. Exceptions.BBDFileSystemException class.

Enumerator
NoError 

No error.

NotFoundError 

A required file or directory could not be found.

SecurityError 

Access to the files were denied.

AbortError 

The operation was aborted.

NotReadableError 

The file or directory cannot be read, typically due to permission problems that occur after a reference to a file has been acquired (for example, the file or directory is concurrently locked by another application).

EncodingError 

The URL is malformed. Make sure that the URL is complete and valid.

NoModificationAllowedError 

The state of the underlying file system prevents any writing to a file or a directory.

InvalidStateError 

The operation cannot be performed on the current state of the interface object.

SyntaxError 

The request did not match the expected pattern.

InvalidModificationError 

The modification requested is not allowed.

QuotaExceededError 

Either there's not enough remaining storage space or the storage quota was reached.

TypeMismatchError 

Request result is of the wrong type. For example, the app is asking for a directory, when the entry is really a file.

PathExistsError 

The file or directory with the same path already exists.

◆ ExistenceCheckResultEnum

Describes the result of a file or folder existence check.

Enumerator
NotFound 

No file system entity was found at the given path.

FileExists 

A file was found at the given path.

FolderExists 

A folder was found at the given path.