HubSectionCollection 类

定义

表示 HubSection 对象的有序集合。

public ref class HubSectionCollection sealed : IIterable<HubSection ^>, IVector<HubSection ^>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class HubSectionCollection final : IIterable<HubSection>, IVector<HubSection>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class HubSectionCollection final : IIterable<HubSection>, IVector<HubSection>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class HubSectionCollection : IEnumerable<HubSection>, IList<HubSection>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class HubSectionCollection : IEnumerable<HubSection>, IList<HubSection>
Public NotInheritable Class HubSectionCollection
Implements IEnumerable(Of HubSection), IList(Of HubSection)
<Hub>
  oneOrMoreChildren
</Hub>
继承
Object Platform::Object IInspectable HubSectionCollection
属性
实现

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)

注解

HubSectionCollection 是从中心的 Sections 属性获取的对象类型。 在 Windows 运行时 API 中使用 HubSectionCollection 的所有属性都是只读属性,其中属性在首次实例化对象时用零项初始化。 但随后可以使用 HubSectionCollection 属性和方法在运行时添加、删除或查询集合中的项。

枚举 C# 或 Microsoft Visual Basic 中的集合

HubSectionCollection 是可枚举的,因此可以使用特定于语言的语法(如 C# 中的 foreach )枚举集合中的项。 编译器为你执行类型强制转换,你无需显式转换为 IEnumerable 。 如果需要显式强制转换(例如,如果要调用 GetEnumerator),请使用 HubSection 约束强制转换为 IEnumerable<T>

属性

Size

获取集合的大小 (计数) 。

方法

Append(HubSection)

将新项添加到集合。

Clear()

从集合中移除所有项。

First()

返回迭代器,以便对集合中的项进行迭代。

GetAt(UInt32)

返回位于指定索引处的项。

GetMany(UInt32, HubSection[])

通过迭代器在一次传递中检索多个元素。

GetView()

获取集合中的不可变视图。

IndexOf(HubSection, UInt32)

检索指定项的索引。

InsertAt(UInt32, HubSection)

在指定的索引处插入指定的项。

RemoveAt(UInt32)

删除指定索引处的项。

RemoveAtEnd()

删除集合中的最后一项。

ReplaceAll(HubSection[])

首先清除集合,然后将提供的数组作为新项插入。

SetAt(UInt32, HubSection)

将指定索引处的值设置为指定的项值。

适用于

另请参阅