Click or drag to resize
Akka.NETIndex<TKey, TValue>.FindValue Method
Find some TValue for the first matching value where the supplied predicate returns true for the given key.

Namespace:  Akka.Util
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public TValue FindValue(
	TKey key,
	Func<TValue, bool> predicate
)

Parameters

key
Type: TKey
The key to use.
predicate
Type: System.Func<TValue, Boolean>
The predicate to filter values associated with key.

Return Value

Type: TValue
The first TValue matching predicate. default(TValue) otherwise.
See Also