Holds enumerable results of the operation.
When enumerating through the results, null values are skipped.
If you want to access null values, use the property.
Results are ordered based on the list of Ids provided to the method.
![](../icons/collapse_all.gif)
C# | Visual Basic | Visual C++ | J# |
public interface ITakeByIdsResult<T> : IEnumerable<T>, IEnumerable
Public Interface ITakeByIdsResult(Of T) _ Inherits IEnumerable(Of T), IEnumerable
generic<typename T> public interface class ITakeByIdsResult : IEnumerable<T>, IEnumerable
![](../icons/collapse_all.gif)
- T
- The result class type.
![](../icons/collapse_all.gif)
All Members | Methods | Properties | |||
Icon | Member | Description |
---|---|---|
![]() | GetEnumerator()()()() |
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerable<(Of <(<'T>)>)>.) |
![]() | GetEnumerator()()()() |
Returns an enumerator that iterates through a collection.
(Inherited from IEnumerable.) |
![]() | ResultsArray |
Gets the results array for the operation.
The array's size is the same as that of the given Ids array. Unmatched Ids will have a null value in the corresponding results array index. |