Fetches all of the objects in the enumeration. Equivalent to
calling FetchAllAsyncT(IEnumerableT).
Namespace: Parse
Assembly: Parse (in Parse.dll) Version: 1.5.5.0 (1.5.5.0)
Syntax
public static Task<IEnumerable<T>> FetchAllAsync<T>( this IEnumerable<T> objects ) where T : ParseObject
Parameters
- objects
- Type: System.Collections.GenericIEnumerableT
The objects to save.
Type Parameters
- T
Return Value
Type: TaskIEnumerableTUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also