Method | Description | |
---|---|---|
Delete ( string key ) : void |
Deletes the cache item by the specified key.
|
|
Get ( string key ) : object |
Gets the cache item by the specified key.
|
|
HasKey ( string key ) : bool |
Determines whether the specified key is on the cache.
|
|
Service ( IServiceProvider provider ) : void |
Services the specified provider.
|
|
Store ( string key, object data ) : void |
Stores the cache item by the specified key.
|
public Service ( IServiceProvider provider ) : void | ||
provider | IServiceProvider | The provider. |
return | void |
public Store ( string key, object data ) : void | ||
key | string | The key. |
data | object | The data. |
return | void |