'Declaration
Public Property TotalFieldsTime As TimeSpan
'Usage
Dim instance As FormTimingResult Dim value As TimeSpan instance.TotalFieldsTime = value value = instance.TotalFieldsTime
public TimeSpan TotalFieldsTime {get; set;}
'Declaration
Public Property TotalFieldsTime As TimeSpan
'Usage
Dim instance As FormTimingResult Dim value As TimeSpan instance.TotalFieldsTime = value value = instance.TotalFieldsTime
public TimeSpan TotalFieldsTime {get; set;}
This value is the summation of all time spent in all threads processing fields.
For serial processing, a timer is started before any work is done to process the first field and the timer is stopped after all work is done processing the last field.
For parallel processing, there is a delegate for processing each field, a timer is started at the beginning of this delegate and stopped at the end. The total time is summation of time between “entering” and “exiting” each delegate.