Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds the specified service to the internal collection of services or to the parent service container.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Public Overridable Sub AddService ( _
serviceType As Type, _
callback As ServiceCreatorCallback, _
promote As Boolean _
)
public virtual void AddService(
Type serviceType,
ServiceCreatorCallback callback,
bool promote
)
public:
virtual void AddService(
Type^ serviceType,
ServiceCreatorCallback^ callback,
bool promote
)
abstract AddService :
serviceType:Type *
callback:ServiceCreatorCallback *
promote:bool -> unit
override AddService :
serviceType:Type *
callback:ServiceCreatorCallback *
promote:bool -> unit
public function AddService(
serviceType : Type,
callback : ServiceCreatorCallback,
promote : boolean
)
Parameters
- serviceType
Type: System.Type
The type of the service to add.
- callback
Type: System.ComponentModel.Design.ServiceCreatorCallback
A callback object that is used to create the service.
- promote
Type: System.Boolean
A Boolean value indicating whether to add the service to the parent container.
Implements
IServiceContainer.AddService(Type, ServiceCreatorCallback, Boolean)
Remarks
The callback parameter allows a service to be declared as available but delays the creation of the object until the service is requested.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.