IBindableVector Interface
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a writeable vector collection of objects that is bindable.
.NET This interface appears as System.Collections.IList.
public interface class IBindableVector : IBindableIterable
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.Guid(960358366, 28624, 19469, 187, 113, 71, 36, 74, 17, 62, 147)]
struct IBindableVector : IBindableIterable
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.Guid(960358366, 28624, 19469, 187, 113, 71, 36, 74, 17, 62, 147)]
public interface IList : IEnumerable
Public Interface IList
Implements IEnumerable
- Attributes
- Implements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
When programming with .NET, this interface is hidden and developers should use the System.Collections.IList interface.
IBindableVector inherits IBindableIterable. Types that implement IBindableVector also implement the interface members of IBindableIterable for C++ usage.
Size |
Gets the number of items in the vector. |
Append(Object) |
Appends an item to the end of the vector. |
Clear() |
Removes all items from the vector. |
Get |
Returns the item at the specified index in the vector. |
Get |
Returns an immutable view of the vector. |
Index |
Returns the index of a specified item in the vector. |
Insert |
Inserts an item into a vector at a specified index. |
Remove |
Removes the item at the specified index in the vector. |
Remove |
Removes the last item in the vector. |
Set |
Sets the item value at the specified index of the vector. |