CallExternalMethodActivity.OnMethodInvoking(EventArgs) 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.
Fournit un raccordement pour les classes dérivées afin de définir ParameterBindings. Cette méthode est appelée juste avant l'exécution de la méthode externe.
protected:
virtual void OnMethodInvoking(EventArgs ^ e);
protected virtual void OnMethodInvoking (EventArgs e);
abstract member OnMethodInvoking : EventArgs -> unit
override this.OnMethodInvoking : EventArgs -> unit
Protected Overridable Sub OnMethodInvoking (e As EventArgs)
Paramètres
EventArgs contenant les données de l'événement MethodInvoking.
Exemples
L'exemple suivant illustre une implémentation de la méthode OnMethodInvoking
. Cet exemple est issu de l'exemple du Kit de développement logiciel Correlated Local Service (SDK) qui provient du fichier CreateTask.cs. Pour plus d’informations, consultez Exemple de service local corrélé.
protected override void OnMethodInvoking(EventArgs e)
{
this.ParameterBindings["taskId"].Value = this.TaskId;
this.ParameterBindings["assignee"].Value = this.Assignee;
this.ParameterBindings["text"].Value = this.Text;
}
Protected Overrides Sub OnMethodInvoking(ByVal e As EventArgs)
Me.ParameterBindings("taskId").Value = Me.TaskId
Me.ParameterBindings("assignee").Value = Me.Assignee
Me.ParameterBindings("text").Value = Me.Text
End Sub