SVsHelpService 接口
传递给 GetService 返回对 IVsHelpSystem。
命名空间: Microsoft.VisualStudio.Shell.Interop
程序集: Microsoft.VisualStudio.Shell.Interop(在 Microsoft.VisualStudio.Shell.Interop.dll 中)
语法
声明
<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")> _
<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")> _
<ComVisibleAttribute(False)> _
Public Interface SVsHelpService
[GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")]
[GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")]
[ComVisibleAttribute(false)]
public interface SVsHelpService
示例
下面的示例演示如何使用此服务公开特定关键字的主题。
using Microsoft.VisualStudio.Shell.Interop;
namespace MyPackageNamespace
{
class MyPackage : Package
{
void ShowHelp(string keyword)
{
IVsHelpSystem helpSystem = this.GetService(typeof(SVsHelpService) as IVsHelpSystem;
if (null != helpSystem)
{
helpSystem.ALinkSearch(keyword, 0, 0);
}
}
}
}