EncryptedSqliteBlobCache.GetCreatedAt(IEnumerable) method¶
Defined in
Type: EncryptedSqliteBlobCache
Namespace: ReactiveMarbles.CacheDatabase.EncryptedSqlite3
Assembly: ReactiveMarbles.CacheDatabase.EncryptedSqlite3.dll
Applies to
netstandard2.0
Overloads¶
- 1.
public IObservable<(string Key, DateTimeOffset? Time)> GetCreatedAt(IEnumerable<string> keys) - 2.
public IObservable<DateTimeOffset?> GetCreatedAt(string key) - 3.
public IObservable<(string Key, DateTimeOffset? Time)> GetCreatedAt(IEnumerable<string> keys, Type type) - 4.
public IObservable<DateTimeOffset?> GetCreatedAt(string key, Type type)
1. Overload¶
public IObservable<(string Key, DateTimeOffset? Time)> GetCreatedAt(IEnumerable<string> keys)
Inherited documentation
These docs were inherited from IBlobCache. The member doesn't override them on this type.
Summary: Gets a observable of key value pairs with the specified keys with their corresponding created DateTimeOffset if it's available.
Parameters
| Name | Type | Description |
|---|---|---|
keys | IEnumerable | The keys to get the values for. |
Returns: IObservable<(string Key, DateTimeOffset? Time)> -- A observable with the specified values.
2. Overload¶
public IObservable<DateTimeOffset?> GetCreatedAt(string key)
Inherited documentation
These docs were inherited from IBlobCache. The member doesn't override them on this type.
Summary: Returns the time that the key was added to the cache, or returns null if the key isn't in the cache.
Parameters
| Name | Type | Description |
|---|---|---|
key | string | The key to return the date for. |
Returns: IObservable
3. Overload¶
public IObservable<(string Key, DateTimeOffset? Time)> GetCreatedAt(IEnumerable<string> keys, Type type)
Inherited documentation
These docs were inherited from IBlobCache. The member doesn't override them on this type.
Summary: Gets a observable of key value pairs with the specified keys with their corresponding created DateTimeOffset if it's available.
Parameters
| Name | Type | Description |
|---|---|---|
keys | IEnumerable | The keys to get the values for. |
type | Type | The type. |
Returns: IObservable<(string Key, DateTimeOffset? Time)> -- A observable with the specified values.
4. Overload¶
public IObservable<DateTimeOffset?> GetCreatedAt(string key, Type type)
Inherited documentation
These docs were inherited from IBlobCache. The member doesn't override them on this type.
Summary: Returns the time that the key was added to the cache, or returns null if the key isn't in the cache.
Parameters
| Name | Type | Description |
|---|---|---|
key | string | The key to return the date for. |
type | Type | The type. |
Returns: IObservable