This documentation is archived and is not being maintained.
TrackingParticipant::BeginTrack Method
Visual Studio 2010
When implemented in a derived class, begins asynchronous processing of the tracking record.
Assembly: System.Activities (in System.Activities.dll)
protected public: virtual IAsyncResult^ BeginTrack( TrackingRecord^ record, TimeSpan timeout, AsyncCallback^ callback, Object^ state )
Parameters
- record
- Type: System.Activities.Tracking::TrackingRecord
The generated tracking record.
- timeout
- Type: System::TimeSpan
The time period after which the provider aborts the attempt.
- callback
- Type: System::AsyncCallback
The method to be called on completion of the operation.
- state
- Type: System::Object
A user-defined object that uniquely identifies this asynchronous operation.
Participants are expected to begin a job to process the records and return an IAsyncResult that the workflow runtime uses to wait for completion. The default implementation is to call Track(TrackingRecord, TimeSpan) and return a Completed status.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: