C# Class Xamarin.Forms.Essentials.SecureStorage.iOS.SecureStorage

Component taken from Xlabs.Forms Implements ISecureStorage for iOS using SecKeyChain.
Inheritance: ISecureStorage
Afficher le fichier Open project: xDelivered-Patrick/Xamarin.Forms.Essentials

Méthodes publiques

Méthode Description
Delete ( string key ) : void

Deletes data.

Retrieve ( string key ) : byte[]

Retrieves stored data.

Store ( string key, byte dataBytes ) : void

Stores data.

Private Methods

Méthode Description
CheckError ( SecStatusCode resultCode, [ caller = null ) : void
GetKeyRecord ( string key, NSData data = null ) : SecRecord

Method Details

Delete() public méthode

Deletes data.
public Delete ( string key ) : void
key string Key for the data to be deleted.
Résultat void

Retrieve() public méthode

Retrieves stored data.
public Retrieve ( string key ) : byte[]
key string Key for the data.
Résultat byte[]

Store() public méthode

Stores data.
public Store ( string key, byte dataBytes ) : void
key string Key for the data.
dataBytes byte Data bytes to store.
Résultat void