HttpChallengeHeaderValueCollection.GetMany 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检索从集合中的指定索引处开始的 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
HttpChallengeHeaderValueCollection 中 HttpChallengeHeaderValue 项的开头的从零开始的索引。
- items
- HttpChallengeHeaderValue[]
HttpChallengeHeaderValueCollection 中起始于 startIndex的 HttpChallengeHeaderValue 项数组。
返回
检索到的 HttpChallengeHeaderValue 项数。
实现
M:Windows.Foundation.Collections.IVector
1.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 副本。