IVsProjectStartupServices.AddStartupService 方法

添加第三方服务到要启动的服务列表,当项目时实例化并确保所有第三方服务启动。

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

语法

声明
Function AddStartupService ( _
    ByRef guidService As Guid _
) As Integer
int AddStartupService(
    ref Guid guidService
)

参数

  • guidService
    类型:System.Guid%
    [in] 指定服务的 GUID 对象。

返回值

类型:System.Int32
如果方法成功,则返回 S_OK。如果失败,它会返回一个错误代码。

备注

COM 签名

从 vsshell.idl:

HRESULT IVsProjectStartupServices::AddStartupService(
   [in] REFGUID guidService
);

IVsProjectStartupServices.AddStartupService 的实现存储服务 GUID,然后启动并维护指向它。 您可以在项目文件必须存储所有已添加的 GUID 和读回它们在项目初始化时启动该服务。 在项目层次结构类停止时,必须停止服务,通过实现 RemoveStartupService 释放指针完成您持有。

此函数在 entity_HierUtil7 CVsHierarchy 不提供,用于 Basic Project 的 CMyProjectHierarchy 的基础,因此,接口。 Basic Project 示例中实现的。 上面的行为的实现。 Basic Project 的调用层次结构 (m_projectStartupServices) 的成员变量中包含添加代码,它采用确保服务,并启动/停止它们。 m_projectStartupServices 类成员文件中的 VsProjectStartupServices.h/.cpp CVsProjectStartupServices 实现,可以分析获得正确实现的示例。

nullnull 引用(在 Visual Basic 中为 Nothing) GUIDS 不会添加到列表。

.NET Framework 安全性

请参见

参考

IVsProjectStartupServices 接口

Microsoft.VisualStudio.Shell.Interop 命名空间