Partilhar via


Interface SVsHelpService

 

Passado para GetService para retornar uma referência a IVsHelpSystem.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)

Sintaxe

[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 class SVsHelpService
[<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")>]
[<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")>]
[<ComVisibleAttribute(false)>]
type SVsHelpService = interface end
<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")>
<GuidAttribute("854D7AC0-BC3D-11D0-B421-00A0C90F9DC4")>
<ComVisibleAttribute(False)>
Public Interface SVsHelpService

Exemplos

O exemplo a seguir mostra como usar este serviço para exibir um tópico para uma palavra-chave específica.

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);
            }
        }
    }
}

Consulte também

Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo