IVsCfgProvider2.GetPlatformNames 方法

返回一个或多个平台名称。

命名空间:  Microsoft.VisualStudio.Shell.Interop
程序集:  Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)

语法

声明
Function GetPlatformNames ( _
    celt As UInteger, _
    <OutAttribute> rgbstr As String(), _
    <OutAttribute> pcActual As UInteger() _
) As Integer
int GetPlatformNames(
    uint celt,
    string[] rgbstr,
    uint[] pcActual
)

参数

  • celt
    类型:System.UInt32
    [in] 指定平台名称的请求的数目。如果此数字是未知的, celt 可以为零。
  • rgbstr
    类型:array<System.String[]
    [in, out, size_is(celt)] 在输入,保存平台名字的数量的赋值的数组 celt指定的。,如果 celt 参数为零,此参数也可以是 nullnull 引用(在 Visual Basic 中为 Nothing)。在输出, rgbstr 包含平台名称。
  • pcActual
    类型:array<System.UInt32[]
    [out, optional] 对平台名称的实际数目的计数的指针返回。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsCfgProvider2::GetPlatformNames(
   [in] ULONG celt,
   [in, out, size_is(celt)] BSTR rgbstr[],
   [out, optional] ULONG *pcActual
);

通常两次调用对 GetPlatformNames。 第一次调用, celt 设置为零, rgbstr 到 nullnull 引用(在 Visual Basic 中为 Nothing)和 pcActual 为有效的地址。 GetPlatformNames 返回包含指向平台的名字的数量的 pcActual 可用。 调用方使用此信息分配 rgbstr 为适当的范围和调用 GetPlatformNames 与 celt 的第二次设置为 pcActual内容。

.NET Framework 安全性

请参见

参考

IVsCfgProvider2 接口

Microsoft.VisualStudio.Shell.Interop 命名空间