IEnumDebugCustomAttributes:: 接下来

检索自定义特性指定数目的枚举序列的。

HRESULT Next ( 
   ULONG      celt,
   CODE_PATH* rgelt,
   ULONG*     pceltFetched
);
int Next(
   uint                        celt, 
   out IDebugCustomAttribute[] rgelt, 
   ref uint                    pceltFetched
);

参数

  • celt
    [in] 检索的元素的数目。 并指定 rgelt 数组的最大大小。

  • rgelt
    [out] 数组将填充的 IDebugCustomAttribute 对象。

  • pceltFetched
    [out] 返回在 rgelt实际上返回的元素的数目。

返回值

如果成功,则返回 S_OK。 ,如果小于元素的请求的数目可能返回,则返回; S_FALSE 否则,返回错误代码。

请参见

参考

IEnumDebugCustomAttributes

IDebugCustomAttribute