IVsPersistSolutionProps.ReadSolutionProps 方法
读出解决方案属性从其 .sln 文件。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
Function ReadSolutionProps ( _
pHierarchy As IVsHierarchy, _
pszProjectName As String, _
pszProjectMk As String, _
pszKey As String, _
fPreLoad As Integer, _
pPropBag As IPropertyBag _
) As Integer
int ReadSolutionProps(
IVsHierarchy pHierarchy,
string pszProjectName,
string pszProjectMk,
string pszKey,
int fPreLoad,
IPropertyBag pPropBag
)
参数
- pHierarchy
类型:Microsoft.VisualStudio.Shell.Interop.IVsHierarchy
[in] 为 IVsHierarchy 接口的指针。preSolution 或全局部分的nullnull 引用(在 Visual Basic 中为 Nothing) ,因为该层次结构不存在,如果解决方案的创建它,或者,因为加载的部分是全局的。
- pszProjectName
类型:System.String
[in] 全局部分的 nullnull 引用(在 Visual Basic 中为 Nothing) ,这意味着解决方案 (.sln) 文件的全局部分的负载。
- pszProjectMk
类型:System.String
[in] 全局部分的 nullnull 引用(在 Visual Basic 中为 Nothing) ,这意味着解决方案 (.sln) 文件的全局部分的负载。
- pszKey
类型:System.String
[in] 解决方案的属性的名称设置,也就是说,其属性包。
- fPreLoad
类型:System.Int32
[in] 指示器 ReadSolutionProps 是否调用是从一种之前或之后加载部分。
- pPropBag
类型:Microsoft.VisualStudio.OLE.Interop.IPropertyBag
[in] 为 IPropertyBag 接口的指针。
返回值
类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。
备注
COM 签名
从 vsshell.idl:
HRESULT IVsPersistSolutionProps::ReadSolutionProps(
[in] IVsHierarchy *pHierarchy,
[in] LPCOLESTR pszProjectName,
[in] LPCOLESTR pszProjectMk,
[in] LPCOLESTR pszKey,
[in] BOOL fPreLoad,
[in] IPropertyBag *pPropBag
);
调用由环境时,加载解决方案文件,以便它可以使用注册表 pszKey 映射到特定 VSPackage。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。