HttpChallengeHeaderValueCollection.GetMany 方法

定义

检索从集合中的指定索引处开始的 HttpChallengeHeaderValue 项。

public:
 virtual unsigned int GetMany(unsigned int startIndex, Platform::Array <HttpChallengeHeaderValue ^> ^ items) = IVector<HttpChallengeHeaderValue ^>::GetMany;
uint32_t GetMany(uint32_t const& startIndex, winrt::array_view <HttpChallengeHeaderValue const&> & items);
public uint GetMany(uint startIndex, HttpChallengeHeaderValue[] items);
function getMany(startIndex, items)
Public Function GetMany (startIndex As UInteger, items As HttpChallengeHeaderValue()) As UInteger

参数

startIndex
UInt32

unsigned int

uint32_t

HttpChallengeHeaderValueCollectionHttpChallengeHeaderValue 项的开头的从零开始的索引。

返回

UInt32

unsigned int

uint32_t

检索到的 HttpChallengeHeaderValue 项数。

实现

M:Windows.Foundation.Collections.IVector1.GetMany(System.UInt32,0[]) M:Windows.Foundation.Collections.IVector1.GetMany(unsigned int,0[]) M:Windows.Foundation.Collections.IVector1.GetMany(uint32_t,0[])

注解

元素将按照枚举器循环访问集合的相同顺序复制到数组中。 如果所做的只是创建集合项的简单副本,则通常将 startIndex 指定为 0,其中创建了长度与要复制的集合 的大小 匹配的目标数组。

如果源集合中的元素数大于 中指定的目标数组的长度,此方法将引发异常。

如果使用 Visual C++ 组件扩展 (C++/CX) 或 JavaScript 进行编程,可以通过调用 GetView 方法创建 IVectorView 副本。

适用于

另请参阅