Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Informs the run-time tracking infrastructure of pending tracking information.
TrackData(Object) |
Informs the run-time tracking infrastructure of pending tracking information. |
TrackData(String, Object) |
Informs the run-time tracking infrastructure of pending tracking information. |
Informs the run-time tracking infrastructure of pending tracking information.
protected:
void TrackData(System::Object ^ userData);
protected void TrackData(object userData);
member this.TrackData : obj -> unit
Protected Sub TrackData (userData As Object)
userData
is a null reference (Nothing
in Visual Basic).
The following example shows a call to the TrackData
method. This example is from the Termination Tracking Service SDK sample. For more information, see Termination Tracking Service Sample.
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
Informs the run-time tracking infrastructure of pending tracking information.
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)
The key to the user data that has changed.
userData
is a null reference (Nothing
in Visual Basic).
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Please sign in to use this experience.
Sign in