IVsHierarchy.GetGuidProperty 方法
获取值为 GUID 的属性。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function GetGuidProperty ( _
itemid As UInteger, _
propid As Integer, _
<OutAttribute> ByRef pguid As Guid _
) As Integer
int GetGuidProperty(
uint itemid,
int propid,
out Guid pguid
)
参数
- itemid
类型:System.UInt32
[in] 的层次结构项 ID 属性进行检索。有关 itemid 值列表,请参见 VSITEMID。
- propid
类型:System.Int32
[in] 特定层次结构项属性的标识符。有关 propid 值列表,请参见 __VSHPROPID。
- pguid
类型:System.Guid%
[out] 对 propid指定的 GUID 属性的指针。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsHierarchy::GetGuidProperty(
[in] VSITEMID itemid,
[in] VSHPROPID propid,
[out] GUID *pguid
);
使用此方法将值传递 GUID 的所有属性。 GetProperty 方法不能用于通过 GUID 属性。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。