IDataStore Methods | Glimpse API Documentation |
The IDataStore type exposes the following members.
Back to Top
Back to Top
Methods
Name | Description | |
---|---|---|
Contains |
Determines whether the data store contains a definition for the specified key.
| |
Get |
Gets the specified key.
| |
Set |
Sets the specified key.
|
Extension Methods
Name | Description | |
---|---|---|
Contains T |
Determines whether store contains and item with a key of T.
(Defined by DataStoreExtensions.) | |
Get T | Overloaded.
Gets an item from store using <T> as a key. This method should be used in combination with Set<T>.
(Defined by DataStoreExtensions.) | |
Get T (String) | Overloaded.
Gets an item from store using the key and casts to <T>.
(Defined by DataStoreExtensions.) | |
Set T |
Sets an item in store using <T> as a key. This method should be used in combination with Get<T>.
(Defined by DataStoreExtensions.) |
See Also