KeyedServiceCollectionExtensions.GetRequiredServiceByKey<TKey,TService> 方法

定义

按密钥获取服务,如果未找到服务,则引发。

public static TService GetRequiredServiceByKey<TKey,TService> (this IServiceProvider services, TKey key) where TService : class;
static member GetRequiredServiceByKey : IServiceProvider * 'Key -> 'Service (requires 'Service : null)
<Extension()>
Public Function GetRequiredServiceByKey(Of TKey, TService) (services As IServiceProvider, key As TKey) As TService

类型参数

TKey

服务密钥类型。

TService

服务类型。

参数

services
IServiceProvider

服务提供程序。

key
TKey

服务密钥。

返回

TService

服务。

适用于