InvokeInterceptor Délégué
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.
Gère l’appel du fourni request
.
public delegate System.Threading.Tasks.Task<object> InvokeInterceptor(MethodInfo targetMethod, InvokeMethodRequest request, IGrain target, IGrainMethodInvoker invoker);
type InvokeInterceptor = delegate of MethodInfo * InvokeMethodRequest * IGrain * IGrainMethodInvoker -> Task<obj>
Public Delegate Function InvokeInterceptor(targetMethod As MethodInfo, request As InvokeMethodRequest, target As IGrain, invoker As IGrainMethodInvoker) As Task(Of Object)
Paramètres
- targetMethod
- MethodInfo
Méthode en target
cours d’appel.
- request
- InvokeMethodRequest
Demande.
- target
- IGrain
Cible d’appel.
- invoker
- IGrainMethodInvoker
L’appelant qui est utilisé pour distribuer le fourni request
au fourni target
.
Valeur renvoyée
Résultat de l’appel, qui sera retourné au client.