aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/performancetiming/responseend/index.html
blob: b4b1d436d3c8bef5123cc4d2ccf73f03998847ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: PerformanceTiming.responseEnd
slug: Web/API/PerformanceTiming/responseEnd
tags:
  - API
  - Backwards compatibility
  - Deprecated
  - Navigation Timing
  - PerformanceTiming
  - Property
  - Propriété
  - Read-only
  - legacy
  - responseEnd
translation_of: Web/API/PerformanceTiming/responseEnd
---
<p>{{APIRef("Navigation Timing")}}</p>

<div class="notecard deprecated">
  <p><strong>Attention :</strong> Cette interface est dépréciée dans la spécification <a href="https://w3c.github.io/navigation-timing/#obsolete">Navigation Timing Level 2</a>. Veuillez utiliser l'interface <a href="/fr/docs/Web/API/PerformanceNavigationTiming"><code>PerformanceNavigationTiming</code></a> à la place.</p>
</div>

<p class="summary">L'ancienne propriété en lecture seule <code><strong>responseEnd</code></strong> retourne un <code>unsigned long long</code> représentant le moment, en millisecondes depuis l'époque UNIX, où le navigateur a reçu le dernier octet de la réponse, ou lorsque la connexion est fermée si cela s'est produit en premier, depuis le serveur à partir d'un cache ou d'une ressource locale.</p>

<h2 id="Syntax">Syntaxe</h2>

<pre class="brush: js">let <var>time</var> = <var>performanceTiming</var>.responseEnd;</pre>

<h2 id="Specifications">Spécifications</h2>

<table class="standard-table">
  <thead>
    <tr>
      <th scope="col">Spécification</th>
      <th scope="col">Statut</th>
      <th scope="col">Commentaire</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>{{SpecName('Navigation Timing', '#dom-performancetiming-responseEnd',
        'PerformanceTiming.responseEnd')}}</td>
      <td>{{Spec2('Navigation Timing')}}</td>
      <td>Définition initiale.</td>
    </tr>
  </tbody>
</table>

<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>

<p>{{Compat("api.PerformanceTiming.responseEnd")}}</p>

<h2 id="See_also">Voir aussi</h2>

<ul>
  <li>L'interface <a href="/fr/docs/Web/API/PerformanceTiming"><code>PerformanceTiming</code></a> à laquelle elle appartient.</li>
</ul>