IVsEnumLibraries2.Next 方法
检索库指定数目的枚举序列的。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop.8.0(在 Microsoft.VisualStudio.Shell.Interop.8.0.dll 中)
语法
声明
Function Next ( _
celt As UInteger, _
<OutAttribute> rgelt As IVsLibrary2(), _
<OutAttribute> ByRef pceltFetched As UInteger _
) As Integer
int Next(
uint celt,
IVsLibrary2[] rgelt,
out uint pceltFetched
)
参数
- celt
类型:System.UInt32
[in] 请求的元素的数目。
- rgelt
类型:array<Microsoft.VisualStudio.Shell.Interop.IVsLibrary2[]
[out] 包含请求的库类型的数组 IVsLibrary2 。
- pceltFetched
类型:System.UInt32%
[out, optional] 在 rgelt提供的元素的数目。,如果 celt 是一个,调用方在 nullnull 引用(在 Visual Basic 中为 Nothing) 可以通过。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell80.idl:
HRESULT IVsEnumLibraries2::Next(
[in] ULONG celt,
[out, size_is(celt), length_is(*pceltFetched)] IVsLibrary2 **rgelt,
[out] ULONG *pceltFetched
);
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。