Package.IServiceContainer.AddService Method (Type, Object, Boolean)

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Adds the given service to the VSPackage's service container.

Namespace:  Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)

Syntax

'Declaration
Private Sub AddService ( _
    serviceType As Type, _
    serviceInstance As Object, _
    promote As Boolean _
) Implements IServiceContainer.AddService
void IServiceContainer.AddService(
    Type serviceType,
    Object serviceInstance,
    bool promote
)
private:
virtual void AddService(
    Type^ serviceType, 
    Object^ serviceInstance, 
    bool promote
) sealed = IServiceContainer::AddService
private abstract AddService : 
        serviceType:Type * 
        serviceInstance:Object * 
        promote:bool -> unit  
private override AddService : 
        serviceType:Type * 
        serviceInstance:Object * 
        promote:bool -> unit
JScript does not support explicit interface implementations.

Parameters

  • serviceType
    Type: Type

    Type of service to add.

  • serviceInstance
    Type: Object

    Service object.

  • promote
    Type: Boolean

    true if this service should be added to any parent service containers; otherwise, false.

Implements

IServiceContainer.AddService(Type, Object, Boolean)

.NET Framework Security

See Also

Reference

Package Class

AddService Overload

Microsoft.VisualStudio.Shell Namespace