IBindableIterable
IBindableIterable
IBindableIterable
IBindableIterable
Interface
Definition
Extends IIterable to enable data-binding infrastructure requirements.
.NET This interface appears as System.Collections.IEnumerable.
public : interface IBindableIterablepublic interface IBindableIterablePublic Interface IBindableIterable// This API is not available in Javascript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
When programming with .NET, this interface is hidden and developers should use the System.Collections.IEnumerable interface.
Methods
First() First() First() First()
Returns a bindable iterator that iterates over the items in the collection.
public : IBindableIterator First()public IBindableIterator First()Public Function First() As IBindableIterator// This API is not available in Javascript.
Returns
The bindable iterator.
Remarks
This interface supports the creation of data bindable collections in C++. When programming with .NET, this interface is hidden and developers should use the System.Collections.IEnumerable interface instead.
- See Also