aboutsummaryrefslogtreecommitdiff
path: root/files/ko/orphaned/web/api/rtcpeerconnection/onidentityresult/index.html
blob: ef2e3e7be4630cd39b7c9bc56674be998fd5acbd (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
---
title: RTCPeerConnection.onidentityresult
slug: orphaned/Web/API/RTCPeerConnection/onidentityresult
translation_of: Web/API/RTCPeerConnection/onidentityresult
original_slug: Web/API/RTCPeerConnection/onidentityresult
---
<p>{{APIRef("WebRTC")}}{{SeeCompatTable}}</p>

<p><code><strong>RTCPeerConnection.onidentityresult</strong></code> 이벤트 핸들러는 {{domxref("RTCPeerConnection")}}{{domxref("RTCIdentityEvent")}} 타입의 {{event("identityresult")}} 이벤트를 수신하게되면 실행되는 코드를 담고 있는 속성입니다. 이러한 이벤트는 {{domxref("RTCPeerConnection.getIdentityAssertion()", "getIdentityAssertion()")}} 혹은 offer 혹은 answer를 생성하는 과정에 의해 식별인자 주장이 생성되면 전송됩니다.</p>

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

<pre class="eval"><em>peerconnection</em>.onidentityresult = <em>function</em>;
</pre>

<h3 id="값"></h3>

<ul>
 <li><code>function</code> 은 개발자가 정의한 함수로 괄호 <code>()</code>나 매개 변수 혹은 <code>function(event) {...}</code>와 같은 이름 없는 함수 정의가 필요 없습니다. 이벤트 핸들러는 항상 {{domxref("RTCIdentityEvent")}} 타입의 이벤트를 포함하는 하나의 변수를 가집니다. </li>
</ul>

<h2 id="예시">예시</h2>

<pre class="brush: js">pc.onidentityresult = function(ev) { alert("onidentityresult event detected!"); };
</pre>

<h2 id="Specifications" name="Specifications">사양서</h2>

<table class="standard-table" style="height: 49px; width: 1000px;">
 <thead>
  <tr>
   <th scope="col">사양서</th>
   <th scope="col">상태</th>
   <th scope="col">코멘트</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('WebRTC 1.0', '#widl-RTCPeerConnection-onidentityresult', 'RTCPeerConnection.onidentityresult') }}</td>
   <td>{{ Spec2('WebRTC 1.0') }}</td>
   <td>Initial specification.</td>
  </tr>
 </tbody>
</table>

<h2 id="브라우저_호환성">브라우저 호환성</h2>



<p>{{Compat("api.RTCPeerConnection.onidentityresult")}}</p>

<h2 id="참조">참조</h2>

<ul>
 <li>{{event("identityresult")}} 이벤트와 해당 타입인 {{domxref("RTCIdentityEvent")}}를 참조하십시오.</li>
</ul>