Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    CollectionSourceBase.GetEnumerable(Boolean) Method

    Returns a sequence (IEnumerable or IQueryable) that contains objects from the original collection.

    Namespace: DevExpress.ExpressApp

    Assembly: DevExpress.ExpressApp.v25.1.dll

    NuGet Package: DevExpress.ExpressApp

    Declaration

    public IEnumerable GetEnumerable(
        bool wrapNotifications = true
    )

    Optional Parameters

    Name Type Default Description
    wrapNotifications Boolean True

    true if the returned sequence should implement the INotifyCollectionChanged interface; otherwise, false. The method considers this parameter only if the original collection implements the IBindingList interface.

    Returns

    Type Description
    IEnumerable

    The sequence that contains objects from the original collection.

    See Also