ReadOnlyProperty
Base interface that can be used for implementing property delegates of read-only properties.
This is provided only for convenience; you don't have to extend this interface as long as your property delegate has methods with the same signatures.
Parameters
Functions
Inheritors
ReadWriteProperty
Base interface that can be used for implementing property delegates of read-write properties.
interface ReadWriteProperty<in T, V> : ReadOnlyProperty<T, V>