Activity.TrackData 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.
Informe l'infrastructure de suivi de l'exécution d'informations de suivi en attente.
Surcharges
TrackData(Object) |
Informe l'infrastructure de suivi de l'exécution d'informations de suivi en attente. |
TrackData(String, Object) |
Informe l'infrastructure de suivi de l'exécution d'informations de suivi en attente. |
TrackData(Object)
Informe l'infrastructure de suivi de l'exécution d'informations de suivi en attente.
protected:
void TrackData(System::Object ^ userData);
protected void TrackData (object userData);
member this.TrackData : obj -> unit
Protected Sub TrackData (userData As Object)
Paramètres
Exceptions
userData
est une référence Null (Nothing
en Visual Basic).
Exemples
L'exemple suivant illustre un appel à la méthode TrackData
. Cet exemple provient de l'exemple du Kit de développement logiciel Termination Tracking Service (SDK). Pour plus d’informations, consultez l’exemple de service de suivi des interruptions.
private void Track_ExecuteCode(object sender, EventArgs e)
{
Console.WriteLine("Calling TrackData from workflow");
this.TrackData("Hello - this is a UserTrackPoint");
}
Private Sub Track_ExecuteCode(ByVal sender As Object, ByVal e As EventArgs)
Console.WriteLine("Calling TrackData from workflow")
Me.TrackData("Hello - me is a UserTrackPoint")
End Sub
S’applique à
TrackData(String, Object)
Informe l'infrastructure de suivi de l'exécution d'informations de suivi en attente.
protected:
void TrackData(System::String ^ userDataKey, System::Object ^ userData);
protected void TrackData (string userDataKey, object userData);
member this.TrackData : string * obj -> unit
Protected Sub TrackData (userDataKey As String, userData As Object)
Paramètres
- userDataKey
- String
Clé des données utilisateur qui ont changé.
Exceptions
userData
est une référence Null (Nothing
en Visual Basic).