SortEntryVector 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
提供查詢結果排序準則的存取權,做為 SortEntry 物件的集合。
public ref class SortEntryVector sealed : IIterable<SortEntry>, IVector<SortEntry>
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
class SortEntryVector final : IIterable<SortEntry>, IVector<SortEntry>
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public sealed class SortEntryVector : IEnumerable<SortEntry>, IList<SortEntry>
Public NotInheritable Class SortEntryVector
Implements IEnumerable(Of SortEntry), IList(Of SortEntry)
- 繼承
- 屬性
- 實作
Windows 需求
裝置系列 |
Windows 10 (已於 10.0.10240.0 引進)
|
API contract |
Windows.Foundation.UniversalApiContract (已於 v1.0 引進)
|
備註
注意
雖然它不是使用 marshalling_behavior(agile)
屬性,但這個類別可以視為敏捷式。 如需詳細資訊,請參閱 執行緒和封送處理 (C++/CX) 。
您可以使用 QueryOptions.SortOrder來擷取此物件。
集合成員清單
針對 JavaScript,SortEntryVector 的成員會顯示在成員清單中。 此外,SortEntryVector 也支援 length 屬性、 Array.prototype的成員,以及使用索引來存取專案。
列舉 C# 或 Microsoft Visual Basic 中的集合
SortEntryVector 是可列舉的,因此您可以使用 C# 中的 foreach 等語言特定語法來列舉集合中的專案。 編譯器會為您執行型別轉換,而且您不需要明確地轉換成 IEnumerable<SortEntry>
。 如果您需要明確轉換,例如,如果您想要呼叫GetEnumerator,請使用SortEntry條件約束轉換成IEnumerable < T >。
屬性
Size |
取得集合中的排序專案數目。 |
方法
Append(SortEntry) |
將排序專案附加至集合結尾。 |
Clear() |
從集合中移除所有排序專案。 |
First() |
擷取反覆運算器,逐一查看集合中的排序專案。 |
GetAt(UInt32) |
擷取集合中指定索引處的排序專案。 |
GetMany(UInt32, SortEntry[]) |
擷取從集合中指定索引處開始的排序專案。 |
GetView() |
擷取排序專案集合的不可變檢視。 |
IndexOf(SortEntry, UInt32) |
擷取集合中指定之排序專案的索引。 |
InsertAt(UInt32, SortEntry) |
將排序專案插入集合中指定的索引處。 |
RemoveAt(UInt32) |
移除集合中指定索引處的排序專案。 |
RemoveAtEnd() |
從集合中移除最後一個排序專案。 |
ReplaceAll(SortEntry[]) |
以指定的排序專案取代集合中的所有排序專案。 |
SetAt(UInt32, SortEntry) |
在集合的指定索引處設定排序專案。 |