ActivityExecutionContext.GetService 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
GetService(Type) |
Retourne un service du type spécifié. |
GetService<T>() |
Retourne un fournisseur de services du Type spécifié. |
GetService(Type)
Retourne un service du type spécifié.
public:
virtual System::Object ^ GetService(Type ^ serviceType);
public object GetService (Type serviceType);
abstract member GetService : Type -> obj
override this.GetService : Type -> obj
Public Function GetService (serviceType As Type) As Object
Paramètres
Retours
Un service Object du Type spécifié.
Implémente
Exceptions
ActivityExecutionContext a été supprimé.
S’applique à
GetService<T>()
Retourne un fournisseur de services du Type spécifié.
public:
generic <typename T>
T GetService();
public T GetService<T> ();
member this.GetService : unit -> 'T
Public Function GetService(Of T) () As T
Paramètres de type
- T
Type spécifié pour lequel le fournisseur sera retourné.
Retours
- T
Un fournisseur de services Object du Type spécifié.
Exceptions
ActivityExecutionContext a été supprimé.