VirtualUser StartTiming Method C# API
Writes a start timing event to the VU event log.

Namespace: Facilita.Fc.Runtime
Assembly: fc_clr (in fc_clr.dll) Version: 9.5.5.77
Syntax

public void StartTiming(
	string id,
	VirtualUserScript script = null
)

Parameters

id
Type: System String
The timing identifier.
script (Optional)
Type: Facilita.Fc.Runtime VirtualUserScript
The currently executing VirtualUserScript.
Remarks

The time in milliseconds since the start of the test run is recorded when this method is called. When EndTiming(String, Boolean, VirtualUserScript) is called with the same id, an end timing event is written to the VU event log. eggPlant Performance uses the time difference between the events to calculate the timing with the specified id.

Timings are similar to transactions but are measured and grouped separately in test results.

See Also