BeginTrack Method

MS Activities Extensions

Collapse imageExpand ImageCopy imageCopyHover image
When implemented in a derived class, used to synchronously process the tracking record.

Namespace: Microsoft.Activities.Extensions.Tracking
Assembly: Microsoft.Activities.Extensions (in Microsoft.Activities.Extensions.dll) Version: 2.0.6.9 (2.0.6.9)

Syntax

C#
protected override IAsyncResult BeginTrack(
	TrackingRecord record,
	TimeSpan timeout,
	AsyncCallback callback,
	Object state
)
Visual Basic
Protected Overrides Function BeginTrack ( _
	record As TrackingRecord, _
	timeout As TimeSpan, _
	callback As AsyncCallback, _
	state As Object _
) As IAsyncResult
Visual C++
protected:
virtual IAsyncResult^ BeginTrack(
	TrackingRecord^ record, 
	TimeSpan timeout, 
	AsyncCallback^ callback, 
	Object^ state
) override

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 callback.
state
Type: System..::..Object
The state.

Return Value

The async result.

See Also