IDataStore Methods

Glimpse API

IDataStore Methods Glimpse API Documentation
The IDataStore type exposes the following members.
Methods

  NameDescription
Public methodContains
Determines whether the data store contains a definition for the specified key.
Public methodGet
Gets the specified key.
Public methodSet
Sets the specified key.
Back to Top
Extension Methods

  NameDescription
Public Extension MethodContains T 
Determines whether store contains and item with a key of T.
(Defined by DataStoreExtensions.)
Public Extension MethodGet 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.)
Public Extension MethodGet T (String)Overloaded.
Gets an item from store using the key and casts to <T>.
(Defined by DataStoreExtensions.)
Public Extension MethodSet T 
Sets an item in store using <T> as a key. This method should be used in combination with Get<T>.
(Defined by DataStoreExtensions.)
Back to Top
See Also