aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/performanceresourcetiming/nexthopprotocol/index.html
blob: 53abc249f57b031acfeea739d7a17e0e43531da5 (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
---
title: PerformanceResourceTiming.nextHopProtocol
slug: Web/API/PerformanceResourceTiming/nextHopProtocol
tags:
  - API
  - Web パフォーマンス
  - プロパティ
  - リソースタイミング API
  - リファレンス
translation_of: Web/API/PerformanceResourceTiming/nextHopProtocol
---
<div>{{APIRef("Resource Timing API")}}</div>

<p><span class="seoSummary"><strong><code>nextHopProtocol</code></strong> 読み取り専用プロパティは、<a href="https://tools.ietf.org/html/rfc7301">ALPN プロトコル ID (RFC7301)</a> で識別されるように、リソースを取得するために使用される<em>ネットワークプロトコル</em>を表す{{domxref("DOMString","文字列")}} です。</span></p>

<p>プロキシが使用されている場合、トンネル接続が確立されていると、このプロパティはトンネリングプロトコルの ALPN プロトコル ID を返します。それ以外の場合、このプロパティはプロキシへの最初のホップの ALPN プロトコル ID を返します。</p>

<p>{{AvailableInWorkers}}</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox"><em>resource</em>.nextHopProtocol;
</pre>

<h3 id="Return_Value" name="Return_Value">戻り値</h3>

<p><a href="https://tools.ietf.org/html/rfc7301">ALPN プロトコル ID (RFC7301)</a> で識別される、リソースの取得に使用された<em>ネットワークプロトコル</em>を表す {{domxref("DOMString","文字列")}}</p>

<h2 id="例"></h2>

<p>次の例では、<code>nextHopProtocol</code> プロパティを使用しています。</p>

<pre class="brush: js">function print_PerformanceEntries() {
  // Use getEntriesByType() to just get the "resource" events
  var p = performance.getEntriesByType("resource");
  for (var i=0; i &lt; p.length; i++) {
    print_nextHopProtocol(p[i]);
  }
}
function print_nextHopProtocol(perfEntry) {
  var value = "nextHopProtocol" in perfEntry;
  if (value)
    console.log("nextHopProtocol = " + perfEntry.nextHopProtocol);
  else
    console.log("nextHopProtocol = NOT supported");
}
</pre>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">ステータス</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('Resource Timing', '#widl-PerformanceResourceTiming-nextHopProtocol', 'nextHopProtocol')}}</td>
   <td>{{Spec2('Resource Timing')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<p>{{Compat("api.PerformanceResourceTiming.nextHopProtocol")}}</p>