Compartir a través de


IKeyedService<TKey,TService> Interfaz

Definición

Representa un servicio identificado por una clave.

public interface IKeyedService<TKey,out TService> : IEquatable<TKey>
type IKeyedService<'Key, 'Service> = interface
    interface IEquatable<'Key>
Public Interface IKeyedService(Of TKey, Out TService)
Implements IEquatable(Of TKey)

Parámetros de tipo

TKey

El tipo de clave.

TService

El tipo de servicio.

Este parámetro de tipo es covariante, es decir, puede usar el tipo que haya especificado o cualquier tipo más derivado. Si desea obtener más información sobre la covarianza y la contravarianza, consulte Covarianza y contravarianza en genéricos.
Derivado
Implementaciones
IEquatable<TKey>

Propiedades

Key

Obtiene la clave de servicio.

Métodos

GetService(IServiceProvider)

Obtiene el servicio del proveedor de servicios.

Se aplica a