IHttpSysRequestTimingFeature.TryGetTimestamp Method       
Definition
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.
Gets the timestamp for the given timing.
public bool TryGetTimestamp(Microsoft.AspNetCore.Server.HttpSys.HttpSysRequestTimingType timestampType, out long timestamp);
	abstract member TryGetTimestamp : Microsoft.AspNetCore.Server.HttpSys.HttpSysRequestTimingType * int64 -> bool
	Public Function TryGetTimestamp (timestampType As HttpSysRequestTimingType, ByRef timestamp As Long) As Boolean
	Parameters
- timestampType
 - HttpSysRequestTimingType
 
The timestamp type to get.
- timestamp
 - Int64
 
The value of the timestamp if set.
Returns
True if the given timing was set (i.e., non-zero).
Remarks
These timestamps were obtained using QueryPerformanceCounter https://free.blessedness.top/windows/win32/api/profileapi/nf-profileapi-queryperformancecounter and the timestamp frequency can be obtained via QueryPerformanceFrequency https://free.blessedness.top/windows/win32/api/profileapi/nf-profileapi-queryperformancefrequency.