C# Class SilverFlow.Controls.Helpers.LocalStorage

Local isolated storage.
Inheritance: ILocalStorage
Show file Open project: Zoomicon/ZUI

Public Methods

Method Description
Contains ( string key ) : bool

Determines if the local storage contains the specified key.

this ( string key ) : object

Gets or saves the value associated with the specified key.

Method Details

Contains() public method

Determines if the local storage contains the specified key.
public Contains ( string key ) : bool
key string The key for the entry to be located.
return bool

this() public method

Gets or saves the value associated with the specified key.
public this ( string key ) : object
key string
return object