IVsBuildPropertyStorage.GetPropertyValue 方法

获取 MSBuild 属性值。

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

语法

声明
Function GetPropertyValue ( _
    pszPropName As String, _
    pszConfigName As String, _
    storage As UInteger, _
    <OutAttribute> ByRef pbstrPropValue As String _
) As Integer
int GetPropertyValue(
    string pszPropName,
    string pszConfigName,
    uint storage,
    out string pbstrPropValue
)

参数

  • pszPropName
    类型:System.String
    [in] 生成属性的名称。
  • pszConfigName
    类型:System.String
    [in] 生成配置的名称。
  • pbstrPropValue
    类型:System.String%
    [out, retval] 指定 MSBuild 属性对象的值。

返回值

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

备注

COM 签名

从 vsshell80.idl:

HRESULT IVsBuildPropertyStorage::GetPropertyValue(
   [in] LPCOLESTR pszPropName,
   [in] LPCOLESTR pszConfigName,
   [in] PersistStorageType storage,
   [out, retval] BSTR* pbstrPropValue
);

用于使项目子类型从基项目检索 MSBuild 对象的值。 有关项目子类型的更多信息,请参见 Project Subtype Overview

.NET Framework 安全性

请参见

参考

IVsBuildPropertyStorage 接口

Microsoft.VisualStudio.Shell.Interop 命名空间