Interface IRecord
A record contains ordered key and value pairs
public interface IRecord
- Extension Methods
Properties
- this[int]
Gets the value at the given index.
- Keys
Gets the keys in a IReadOnlyList<T>.
- Values
Gets the key and value pairs in a IReadOnlyDictionary<TKey, TValue>.
Methods
- GetCaseInsensitive<T>(string)
Gets the value specified by the given key and converts it to the given type. The key is not case sensitive.
- Get<T>(string)
Gets the value specified by the given key and converts it to the given type.
- TryGetCaseInsensitive<T>(string, out T)
Tries to get the value specified by the given key and converts it to the given type. The key is not case sensitive.
- TryGet<T>(string, out T)
Tries to get the value specified by the given key and converts it to the given type.