SVsHelpService Interface
Visual Studio 2015
Passed to GetService to return a reference to IVsHelpSystem.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
The following example shows how to use this service to display a topic for a specific keyword.
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); } } } }
Show: