ExpiringDictionaryTKey, TValueUpsertRange Method |
Adds or updates a range of items. If an item exists then it is updated but its timestamp is not refreshed.
Namespace: VirtualRadar.InterfaceAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void UpsertRange(
IEnumerable<TValue> values,
Func<TValue, TKey> extractKey
)
Public Sub UpsertRange (
values As IEnumerable(Of TValue),
extractKey As Func(Of TValue, TKey)
)
public:
void UpsertRange(
IEnumerable<TValue>^ values,
Func<TValue, TKey>^ extractKey
)
member UpsertRange :
values : IEnumerable<'TValue> *
extractKey : Func<'TValue, 'TKey> -> unit
Parameters
- values
- Type: System.Collections.GenericIEnumerableTValue
- extractKey
- Type: SystemFuncTValue, TKey
See Also