Click or drag to resize

CacheTKey, TValueItem Property

Gets the value associated with the specified key.

Namespace: GSF.Net.Snmp.Security
Assembly: GSF.Net (in GSF.Net.dll) Version: 2.4.181-beta
Syntax
public TValue this[
	TKey key
] { get; }
View Source

Parameters

key  TKey
The key of the value to get

Return Value

TValue
The value associated with the specified key. If the specified key is not found, a get operation throws a System.Collections.Generic.KeyNotFoundException, and a set operation creates a new element with the specified key.
Exceptions
ExceptionCondition
ArgumentNullException key is null.
KeyNotFoundExceptionThe property is retrieved and key does not exist in the collection.
See Also