ServiceProvider.GetService 方法

定义

检索服务对象。

重载

GetService(Guid)

获取服务对象。

GetService(Type)

获取服务对象。

GetService(Guid)

获取服务对象。

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

参数

guid
Guid

一个对象的 guid,该对象指定要获取的服务对象类型。

返回

返回 Object,它是 guid 类型的服务对象。

适用于

GetService(Type)

获取服务对象。

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

参数

serviceType
Type

一个对象,它指定要获取的服务对象的类型。

返回

返回 Object,它是 serviceType 类型的服务对象。

实现

适用于