ServiceProviderServiceExtensions.GetServices 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
GetServices(IServiceProvider, Type) |
Obtient une énumération des services de type |
GetServices<T>(IServiceProvider) |
Obtient une énumération des services de type |
GetServices(IServiceProvider, Type)
Obtient une énumération des services de type serviceType
à partir du IServiceProvider.
public:
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<System::Object ^> ^ GetServices(IServiceProvider ^ provider, Type ^ serviceType);
public static System.Collections.Generic.IEnumerable<object?> GetServices (this IServiceProvider provider, Type serviceType);
static member GetServices : IServiceProvider * Type -> seq<obj>
<Extension()>
Public Function GetServices (provider As IServiceProvider, serviceType As Type) As IEnumerable(Of Object)
Paramètres
- provider
- IServiceProvider
IServiceProvider à partir duquel récupérer les services.
- serviceType
- Type
Objet spécifiant le type d'objet service à obtenir.
Retours
Énumération des services de type serviceType
.
S’applique à
GetServices<T>(IServiceProvider)
Obtient une énumération des services de type T
à partir du IServiceProvider.
public:
generic <typename T>
[System::Runtime::CompilerServices::Extension]
static System::Collections::Generic::IEnumerable<T> ^ GetServices(IServiceProvider ^ provider);
public static System.Collections.Generic.IEnumerable<T> GetServices<T> (this IServiceProvider provider);
static member GetServices : IServiceProvider -> seq<'T>
<Extension()>
Public Function GetServices(Of T) (provider As IServiceProvider) As IEnumerable(Of T)
Paramètres de type
- T
Type de l’objet de service à obtenir.
Paramètres
- provider
- IServiceProvider
IServiceProvider à partir duquel récupérer les services.
Retours
Énumération des services de type T
.