secureConnectionStart
Summary
Returns the time immediately before the user agent starts the handshake process to secure the current connection, if the scheme of the current page is HTTPS. If HTTPS is not used, returns zero.
Property of apis/navigation timing/PerformanceTimingapis/navigation timing/PerformanceTiming
Syntax
Note: This property is read-only.
var result = PerformanceTiming.secureConnectionStart;
Return Value
Returns an object of type unsigned longunsigned long
Examples
var perftime = performance.timing;
document.write("secureConnectionStart: " + perftime.secureConnectionStart + "<br />");
Notes
This attribute is optional. User agents that don’t have this attribute available must set it as undefined.
Related specifications
- Navigation Timing 2
- W3C Working Draft
Attributions
Microsoft Developer Network: Windows Internet Explorer API reference Article