Interface IAttribute<T>
Represents an Attribute (Property), but strongly typed
[PublicApi]
public interface IAttribute<out T> : IAttribute, IAttributeBase
Type Parameters
T
Type of the Value
- Inherited Members
Remarks
We recommend you read about the Understanding Data...
Properties
Typed
Gets the typed Value Objects - so the same as Values, but with the correct type
IEnumerable<IValue<out T>> Typed { get; }
Property Value
- IEnumerable<IValue<T>>
TypedContents
Gets the typed first/default value
T TypedContents { get; }
Property Value
- T