Component.GetService(Type) Method

Definition

Returns an object that represents a service provided by the Component or by its Container.

protected:
 virtual System::Object ^ GetService(Type ^ service);
protected virtual object? GetService (Type service);
protected virtual object GetService (Type service);
abstract member GetService : Type -> obj
override this.GetService : Type -> obj
Protected Overridable Function GetService (service As Type) As Object

Parameters

service
Type

A service provided by the Component.

Returns

An Object that represents a service provided by the Component, or null if the Component does not provide the specified service.

Remarks

This method can be overridden by a derived class.

Applies to

See also