|
CacheTKey, TValueItem Property
|
Gets the value associated with the specified key.
Namespace: GSF.Net.Snmp.SecurityAssembly: GSF.Net (in GSF.Net.dll) Version: 2.4.207-beta
Syntax public TValue this[
TKey key
] { get; }
Public ReadOnly Default Property Item (
key As TKey
) As TValue
Get
public:
property TValue default[TKey key] {
TValue get (TKey key);
}
member Item : 'TValue with get
View SourceParameters
- key TKey
- The key of the value to get
Return Value
TValueThe 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 See Also