FastenUp
Search Results for

    Show / Hide Table of Contents

    Class BindableCollection<T>

    Represents a collection of objects that can be individually bound to a .

    Inheritance
    Object
    BindableCollection<T>
    Implements
    IBindableCollection<T>
    IBindable
    ICollection<T>
    Namespace: FastenUp.Runtime.Bindables
    Assembly: cs.temp.dll.dll
    Syntax
    public sealed class BindableCollection<T> : IBindableCollection<T>, IBindable
    Type Parameters
    Name Description
    T

    The type of elements in the collection.

    Remarks

    Used by source code generator to determine bindable properties.

    Properties

    Count

    Declaration
    public int Count { get; }
    Property Value
    Type Description
    Int32

    Methods

    Add(T)

    Declaration
    public void Add(T item)
    Parameters
    Type Name Description
    T item

    Clear()

    Declaration
    public void Clear()

    Contains(T)

    Declaration
    public bool Contains(T item)
    Parameters
    Type Name Description
    T item
    Returns
    Type Description
    Boolean

    CopyTo(T[], Int32)

    Declaration
    public void CopyTo(T[] array, int arrayIndex)
    Parameters
    Type Name Description
    T[] array
    Int32 arrayIndex

    Remove(T)

    Declaration
    public bool Remove(T item)
    Parameters
    Type Name Description
    T item
    Returns
    Type Description
    Boolean

    Events

    OnItemAdded

    Declaration
    public event Action<T> OnItemAdded
    Event Type
    Type Description
    Action<T>

    OnItemRemoved

    Declaration
    public event Action<T> OnItemRemoved
    Event Type
    Type Description
    Action<T>

    Implements

    IBindableCollection<T>
    IBindable
    ICollection<>
    In This Article
    Back to top Generated by DocFX