ProvideLanguageServiceAttribute.ShowHotURLs 属性

确定 URL 是否显示方式与显示它们可以单击。 不使用此选项。

命名空间:  Microsoft.VisualStudio.Shell
程序集:  Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)

语法

声明
Public Property ShowHotURLs As Boolean
public bool ShowHotURLs { get; set; }

属性值

类型:System.Boolean
如果 URL,则会显示一个 “快捷”或可单击,返回 true ;否则,返回 false。

备注

Visual Studio 当前不使用此属性,不应设置。

此属性为所有语言服务实现可用。

默认值为 false。

注册表项如下所示:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\[X.Y]\Languages\Language Services\
  [Language Name]\
    ShowHotURLs = reg_dword: 0x00000001

示例

    [ProvideLanguageService(typeof(MyLanguageService),           // Required
                            MyConstants.languageName,            // Required
                            MyConstants.languageNameResourceID,  // Required
        // Optional language service properties
        ShowHotURLs = true,  // drop down bar options are supported
                           )]

.NET Framework 安全性

请参见

参考

ProvideLanguageServiceAttribute 类

Microsoft.VisualStudio.Shell 命名空间