ServiceManager.GetRequiredService<TServiceType> 方法

定义

检索所请求的服务。

public:
generic <typename TServiceType>
 TServiceType GetRequiredService();
public TServiceType GetRequiredService<TServiceType> ();
member this.GetRequiredService : unit -> 'ServiceType
Public Function GetRequiredService(Of TServiceType) () As TServiceType

类型参数

TServiceType

要检索的服务类型。

返回

TServiceType

作为服务实例的泛型类型。

例外

没有给定类型的服务。

注解

GetService 不同,此方法在服务不可用的情况下引发 NotSupportedException

适用于