Enum ReadMode
Desribes how the data read operation is performed.
Namespace: Mediachase.Data.Provider
Assembly: Mediachase.DataProvider.dll
Version: 13.30.0Syntax
public enum ReadMode
Fields
Name | Description |
---|---|
Cached | Load data from cache if it exists. If it does not, load it from the source and add it to the cache before returning. |
CachedNoInsert | Load data from cache if it exists. If it does not, load it from the source and return it without adding it to the cache. |
UnCached | Read the data directly from the source, bypassing cache completely. |