Table of Contents
These v19 docs are archived 🔒. Go to the latest docs home or try if this exact page is available in the latest docs.

Interface IAttribute

Namespace
ToSic.Eav.Data
Assembly
ToSic.Eav.Core.dll

Represents an Attribute with Values - without knowing what data type is in the value. Usually we'll extend this and use IAttribute<T> instead.

[PublicApi]
public interface IAttribute : IAttributeBase
Inherited Members

Remarks

We recommend you read about the Understanding Data...

Properties

Values

Gets a list of all IValues of this Entity's Attribute. To get the typed objects, use the Typed

IEnumerable<IValue> Values { get; }

Property Value

IEnumerable<IValue>