This attribute is used to adorn a component to indicate that it can
be used as a list in a data-binding scenario.
The ListBindable property determines whether the
property is bindable. Note that while this is a Boolean, the
attribute can be compared with the static Yes or
No values for equality.
public sealed class ListBindableAttribute : Attribute {
// Public Constructors
public ListBindableAttribute(BindableSupport flags);
public ListBindableAttribute(bool listBindable);
// Public Static Fields
public static readonly ListBindableAttribute Default; // =System.ComponentModel.ListBindableAttribute
public static readonly ListBindableAttribute No; // =System.ComponentModel.ListBindableAttribute
public static readonly ListBindableAttribute Yes; // =System.ComponentModel.ListBindableAttribute
// Public Instance Properties
public bool ListBindable{get; }
// Public Instance Methods
public override bool Equals(object obj); // overrides Attribute
public override int GetHashCode(); // overrides Attribute
public override bool IsDefaultAttribute(); // overrides Attribute
}