IObjectCacheTKey, TValueGetOrInsertChangedSince Method

Gets and returns the object if it exists in the cache - and is newer than the date provied in changedSince argument - otherwise the supplied createMethod is used to get the item from the repository

Definition

Namespace: Scanjour.Workflow4.Base.Cache
Assembly: Scanjour.Workflow4.Base (in Scanjour.Workflow4.Base.dll) Version: 24.4.0.0 (24.4.0.0)
C#
TValue GetOrInsertChangedSince(
	Uri uri,
	TKey key,
	Func<TKey, TValue> createMethod,
	DateTime changedSince
)

Parameters

uri  Uri

[Missing <param name="uri"/> documentation for "M:Scanjour.Workflow4.Base.Cache.IObjectCache`2.GetOrInsertChangedSince(System.Uri,`0,System.Func{`0,`1},System.DateTime)"]

key  TKey
The key of the item to get
createMethod  FuncTKey, TValue
Function that is able to create a cacheitem
changedSince  DateTime
Datetime of the oldest accepted value in the cache

Return Value

TValue
The object identified by the key

See Also