[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Fetches the value associated with the specified key. If no value can be found, then the defaultValue is returned.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Function Fetch ( _
	key As K, _
	defaultValue As V _
) As V
C#
public virtual V Fetch (
	K key,
	V defaultValue
)
Visual C++
public:
virtual V Fetch (
	K key, 
	V defaultValue
)

Parameters

key
K type parameter of net.esper.compat.LinkedDictionary<(Of K, V>).
defaultValue
V type parameter of net.esper.compat.LinkedDictionary<(Of K, V>).

Return Value