Method LoadFromSource
LoadFromSource(String, out ProviderCacheItem)
Responsible for loading the object from the data source. Key is passed as parameter.
Declaration
void LoadFromSource(string key, out ProviderCacheItem cacheItem)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | key used to reference object |
ProviderCacheItem | cacheItem |
LoadFromSource(String[])
Responsible for loading array of objects from the data source. Keys are passed as parameter.
Declaration
Dictionary<string, ProviderCacheItem> LoadFromSource(string[] keys)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | keys | array of keys |
Returns
Type | Description |
---|---|
Dictionary<System.String, ProviderCacheItem> |