From ef6dc2f07bcc7d47193d4d4110e32f8eb87b369b Mon Sep 17 00:00:00 2001 From: MDN Date: Sat, 19 Jun 2021 00:34:51 +0000 Subject: [CRON] sync translated content --- .../web/api/rtcidentityerrorevent/index.html | 68 ++++++++++++++++++++++ .../orphaned/web/api/rtcidentityevent/index.html | 63 ++++++++++++++++++++ 2 files changed, 131 insertions(+) create mode 100644 files/ja/orphaned/web/api/rtcidentityerrorevent/index.html create mode 100644 files/ja/orphaned/web/api/rtcidentityevent/index.html (limited to 'files/ja/orphaned/web/api') diff --git a/files/ja/orphaned/web/api/rtcidentityerrorevent/index.html b/files/ja/orphaned/web/api/rtcidentityerrorevent/index.html new file mode 100644 index 0000000000..2059ce881e --- /dev/null +++ b/files/ja/orphaned/web/api/rtcidentityerrorevent/index.html @@ -0,0 +1,68 @@ +--- +title: RTCIdentityErrorEvent +slug: orphaned/Web/API/RTCIdentityErrorEvent +translation_of: Web/API/RTCIdentityErrorEvent +original_slug: Web/API/RTCIdentityErrorEvent +--- +

{{APIRef("WebRTC")}}{{SeeCompatTable}}

+ +

RTCIdentityErrorEvent インタフェースは、通常 {{domxref("RTCPeerConnection")}} に関連付けられたアイデンティティー・プロバイダ(IdP) を示すイベントを表現します。これは、?遭遇したエラーを持ちます。{{event("idpassertionerror")}} と{{event("idpvalidationerror")}}の2つのイベントタイプを持ちます。

+ +
+

Firefox implements this interface under the following name: RTCPeerConnectionIdentityErrorEvent. It is likely that it will correct this name when it will unprefix {{domxref("RTCPeerConnection")}}, once spec and implementation will have been stabilized.

+
+ +

プロパティ

+ +

{{domxref("RTCIdentityErrorEvent")}} は {{domxref("Event")}}であり、このイベントは{{domxref("Event")}} のプロパティも実装します。

+ +
+
{{domxref("RTCIdentityErrorEvent.idp")}} {{readonlyinline}}
+
エラーレスポンスを生成したアイデンティティー・プロバイダ(idp)の{{Glossary("domain name")}} を表す{{domxref("DOMString")}}です。
+
{{domxref("RTCIdentityErrorEvent.loginUrl")}} {{readonlyinline}}
+
認証が完了可能なURLを示す{{domxref("DOMString")}} です。nullの値をとることもあり、アイデンティティー・プロバイダ(idp)から提供されます。
+
{{domxref("RTCIdentityErrorEvent.protocol")}} {{readonlyinline}}
+
利用されているIdpプロトコルを示す{{domxref("DOMString")}}です。
+
+ +

メソッド

+ +

{{domxref("RTCIdentityErrorEvent")}} は {{domxref("Event")}}であり、このイベントは{{domxref("Event")}} のプロパティも実装します。具体的な{{domxref("RTCIdentityErrorEvent")}} メソッドはありません。

+ +

+ +
pc.onidpassertionerror = function( ev ) {
+                           alert("The idp named '" +
+                                 ev.idp +
+                                 "' encountered an error " +
+                                 "while generating an assertion.");
+                         }
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('WebRTC 1.0', '#idl-def-RTCIdentityErrorEvent', 'RTCIdentityErrorEvent') }}{{Spec2('WebRTC 1.0')}}Initial definition.
+ +

ブラウザ互換性

+ +

{{Compat("api.RTCIdentityErrorEvent")}}

+ +

See also

+ + diff --git a/files/ja/orphaned/web/api/rtcidentityevent/index.html b/files/ja/orphaned/web/api/rtcidentityevent/index.html new file mode 100644 index 0000000000..bfcf18c19d --- /dev/null +++ b/files/ja/orphaned/web/api/rtcidentityevent/index.html @@ -0,0 +1,63 @@ +--- +title: RTCIdentityEvent +slug: orphaned/Web/API/RTCIdentityEvent +translation_of: Web/API/RTCIdentityEvent +original_slug: Web/API/RTCIdentityEvent +--- +

{{APIRef("WebRTC")}}{{SeeCompatTable}}

+ +

RTCIdentityEvent インタフェースは、通常 {{domxref("RTCPeerConnection")}}に関連付けられたアイデンティティー・プロバイダ(IdP) を示すイベントを表現します。これはIDアサーションによって生成されたものです。イベントタイプは{{event("identityresult")}}です。

+ +
+

Firefox implements this interface under the following name: RTCPeerConnectionIdentityEvent. It is likely that it will correct this name when it will unprefix {{domxref("RTCPeerConnection")}}, once spec and implementation will have been stabilized.

+
+ +

プロパティ

+ +

{{domxref("RTCIdentityEvent")}} は {{domxref("Event")}} であり, このイベントは {{domxref("Event")}} のプロパティも実装します。

+ +
+
{{domxref("RTCIdentityEvent.assertion")}} {{readOnlyInline}}
+
生成されたアサーションであるblobを含む{{domxref("DOMString")}}を返します。
+
+ +

メソッド

+ +

{{domxref("RTCIdentityEvent")}} は {{domxref("Event")}} であり, このイベントは {{domxref("Event")}} のプロパティも実装します。具体的な {{domxref("RTCIdentityEvent")}} メソッドはありません。

+ +

+ +
pc.onidentityresult = function( ev ) {
+                         alert("A new identity assertion (blob: '" +
+                               ev.assertion +
+                               "') has been generated.");
+                      }
+
+ +

仕様

+ + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('WebRTC 1.0', '#idl-def-RTCIdentityEvent', 'RTCIdentityEvent') }}{{Spec2('WebRTC 1.0')}}Initial definition.
+ +

ブラウザ互換性

+ +

{{Compat("api.RTCIdentityEvent")}}

+ +

See also

+ + -- cgit v1.2.3-54-g00ecf