blob: dff0c7e8fd5d6185bb0b926866bdfc9cbea5f036 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
---
title: PerformanceResourceTiming.nextHopProtocol
slug: Web/API/PerformanceResourceTiming/nextHopProtocol
tags:
- API
- Property
- Propriété
- Reference
- Performance Web
- Resource Timing API
- nextHopProtocol
translation_of: Web/API/PerformanceResourceTiming/nextHopProtocol
---
<div>{{APIRef("Resource Timing API")}}</div>
<p>La propriété en lecture seule <strong><code>nextHopProtocol</code></strong> est une <a href="/fr/docs/Web/API/DOMString">chaîne de caractères</a> représentant le <em>protocole réseau</em> utilisé pour récupérer la ressource, tel qu'identifié par le <a href="https://datatracker.ietf.org/doc/html/rfc7301">ALPN Protocol ID (RFC7301)</a>.</p>
<p>Lorsqu'un proxy est utilisé, si une connexion tunnel est établie, cette propriété renvoie l'ID du protocole ALPN du protocole tunnelisé. Sinon, cette propriété renvoie l'ID du protocole ALPN du premier saut vers le proxy.</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush: js"><var>resource</var>.nextHopProtocol;</pre>
<h3 id="Return_Value">Valeur de retour</h3>
<p>Une chaîne de caractères <a href="/fr/docs/Web/API/DOMString"><code>string</code></a> représentant le <em>protocole réseau</em> utilisé pour récupérer la ressource, tel qu'identifié par le <a href="https://datatracker.ietf.org/doc/html/rfc7301">ALPN Protocol ID (RFC7301)</a>.</p>
<h2 id="Example">Exemple</h2>
<p>L'exemple suivant utilise la propriété <code>nextHopProtocol</code> :</p>
<pre class="brush: js">function print_PerformanceEntries() {
// Utilise getEntriesByType() pour obtenir uniquement les événements "resource"
let p = performance.getEntriesByType("resource");
for (let i = 0; i < p.length; i++) {
print_nextHopProtocol(p[i]);
}
}
function print_nextHopProtocol(perfEntry) {
let value = "nextHopProtocol" in perfEntry;
if (value)
console.log("nextHopProtocol = " + perfEntry.nextHopProtocol);
else
console.log("nextHopProtocol = N'EST PAS pris en charge");
}
</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('Resource Timing 2',
'#dom-performanceresourcetiming-nexthopprotocol', 'nextHopProtocol')}}</td>
<td>{{Spec2('Resource Timing 2')}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.PerformanceResourceTiming.nextHopProtocol")}}</p>
|