ServiceProviderServiceExtensions.GetRequiredService Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetRequiredService(IServiceProvider, Type) |
Obtient le service de type |
GetRequiredService<T>(IServiceProvider) |
Obtient le service de type |
GetRequiredService(IServiceProvider, Type)
Obtient le service de type serviceType
à partir du IServiceProvider.
public:
[System::Runtime::CompilerServices::Extension]
static System::Object ^ GetRequiredService(IServiceProvider ^ provider, Type ^ serviceType);
public static object GetRequiredService (this IServiceProvider provider, Type serviceType);
static member GetRequiredService : IServiceProvider * Type -> obj
<Extension()>
Public Function GetRequiredService (provider As IServiceProvider, serviceType As Type) As Object
Paramètres
- provider
- IServiceProvider
IServiceProvider à partir duquel récupérer l’objet de service.
- serviceType
- Type
Objet spécifiant le type d'objet service à obtenir.
Retours
Objet service de type serviceType
.
Exceptions
Il n’existe aucun service du type serviceType
.
provider
a déjà été supprimé.
S’applique à
GetRequiredService<T>(IServiceProvider)
Obtient le service de type T
à partir du IServiceProvider.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static T GetRequiredService(IServiceProvider ^ provider);
public static T GetRequiredService<T> (this IServiceProvider provider);
static member GetRequiredService : IServiceProvider -> 'T
<Extension()>
Public Function GetRequiredService(Of T) (provider As IServiceProvider) As T
Paramètres de type
- T
Type de l’objet de service à obtenir.
Paramètres
- provider
- IServiceProvider
IServiceProvider à partir duquel récupérer l’objet de service.
Retours
Objet service de type T
.
Exceptions
Il n’existe aucun service du type T
.
provider
a déjà été supprimé.