Developer Resources for AbleCommerce eCommerce platform
CommerceBuilder.Common Namespace / CollectionEmulator Class / FindAll<T> Method
The type of the list.
The list of items to search.
The predicate to use for matching
In This Topic
    FindAll<T> Method
    In This Topic
    Find all objects in this collection that match the given predicate
    Syntax
    [Extension()]
    public static List<T> FindAll<T>( 
       IList<T> list,
       Predicate<T> match
    )

    Parameters

    list
    The list of items to search.
    match
    The predicate to use for matching

    Type Parameters

    T
    The type of the list.

    Return Value

    List of objects in this collection that matched the given predicate
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also