ServiceProvider.GetService Method

Definition

Retrieves the service object.

Overloads

GetService(Guid)

Gets the service object.

GetService(Type)

Gets the service object.

GetService(Guid)

Gets the service object.

public:
 System::Object ^ GetService(Guid guid);
public object GetService (Guid guid);
member this.GetService : Guid -> obj
Public Function GetService (guid As Guid) As Object

Parameters

guid
Guid

The guid of an object that specifies the type of service object to get.

Returns

Returns Object, a service object of type guid.

Applies to

GetService(Type)

Gets the service object.

public:
 virtual System::Object ^ GetService(Type ^ serviceType);
public object GetService (Type serviceType);
abstract member GetService : Type -> obj
override this.GetService : Type -> obj
Public Function GetService (serviceType As Type) As Object

Parameters

serviceType
Type

An object that specifies the type of service object to get.

Returns

Returns Object, a service object of type serviceType.

Implements

Applies to