C# Class Caliburn.Micro.PhoneStateStorageMechanism

Stores data in the phone state.
Inheritance: IStorageMechanism
Show file Open project: bryanhunter/CaliburnMicroTalk

Public Methods

Method Description
BeginStoring ( ) : void

Begins the storage transaction.

ClearLastSession ( ) : void

Clears the data stored in the last storage transaction.

Delete ( string key ) : void

Deletes the data with the specified key.

EndStoring ( ) : void

Ends the storage transaction.

PhoneStateStorageMechanism ( IPhoneContainer container, IPhoneService phoneService ) : System

Initializes a new instance of the PhoneStateStorageMechanism class.

RegisterSingleton ( Type service, string key, Type implementation ) : void

Registers service with the storage mechanism as a singleton.

Store ( string key, object data ) : void

Stores the value with the specified key.

Supports ( StorageMode mode ) : bool

Indicates what storage modes this mechanism provides.

TryGet ( string key, object &value ) : bool

Tries to get the data previously stored with the specified key.

Method Details

BeginStoring() public method

Begins the storage transaction.
public BeginStoring ( ) : void
return void

ClearLastSession() public method

Clears the data stored in the last storage transaction.
public ClearLastSession ( ) : void
return void

Delete() public method

Deletes the data with the specified key.
public Delete ( string key ) : void
key string The key.
return void

EndStoring() public method

Ends the storage transaction.
public EndStoring ( ) : void
return void

PhoneStateStorageMechanism() public method

Initializes a new instance of the PhoneStateStorageMechanism class.
public PhoneStateStorageMechanism ( IPhoneContainer container, IPhoneService phoneService ) : System
container IPhoneContainer The container.
phoneService IPhoneService The phone service.
return System

RegisterSingleton() public method

Registers service with the storage mechanism as a singleton.
public RegisterSingleton ( Type service, string key, Type implementation ) : void
service System.Type The service.
key string The key.
implementation System.Type The implementation.
return void

Store() public method

Stores the value with the specified key.
public Store ( string key, object data ) : void
key string The key.
data object The data.
return void

Supports() public method

Indicates what storage modes this mechanism provides.
public Supports ( StorageMode mode ) : bool
mode StorageMode The storage mode to check.
return bool

TryGet() public method

Tries to get the data previously stored with the specified key.
public TryGet ( string key, object &value ) : bool
key string The key.
value object The value.
return bool