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

 

Adds the given service to the service container by means of the specified ServiceCreatorCallback.

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

Private Sub AddService (
	serviceType As Type,
	callback As ServiceCreatorCallback,
	promote As Boolean
)
	Implements IServiceContainer.AddService

Parameters

serviceType
Type: System.Type

The type of service to add.

callback
Type: System.ComponentModel.Design.ServiceCreatorCallback

ServiceCreatorCallback that can create the service. This allows a service to be declared as available, but delays creation of the object until the service is requested.

promote
Type: System.Boolean

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

Return to top
Show: