This translation is incomplete. Please help translate this article from English.
これは実験段階の機能です。
この機能は複数のブラウザで開発中の状態にあります。各ブラウザで用いるために、適切なベンダー接頭辞が必要な場合があります。互換性テーブルをチェックしてください。また、実験段階の機能の構文と挙動は、仕様変更に伴い各ブラウザの将来のバージョンで変更になる可能性があることに注意してください。
RTCIdentityEvent インタフェースは、通常 RTCPeerConnectionに関連付けられたアイデンティティー・プロバイダ(IdP) を示すイベントを表現します。これはIDアサーションによって生成されたものです。イベントタイプはidentityresultです。
Firefox implements this interface under the following name: RTCPeerConnectionIdentityEvent. It is likely that it will correct this name when it will unprefix RTCPeerConnection, once spec and implementation will have been stabilized.
プロパティ
RTCIdentityEvent は Event であり, このイベントは Event のプロパティも実装します。
RTCIdentityEvent.assertion読取専用- 生成されたアサーションであるblobを含む
DOMStringを返します。
メソッド
RTCIdentityEvent は Event であり, このイベントは Event のプロパティも実装します。具体的な RTCIdentityEvent メソッドはありません。
例
pc.onidentityresult = function( ev ) {
alert("A new identity assertion (blob: '" +
ev.assertion +
"') has been generated.");
}
仕様
| Specification | Status | Comment |
|---|---|---|
| WebRTC 1.0: Real-time Communication Between Browser The definition of 'RTCIdentityEvent' in that specification. |
草案 | Initial definition. |
ブラウザ互換性
| Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|
| Basic support | (有) | (有) [1] | 未サポート | (有) | ? |
| Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
|---|---|---|---|---|---|---|
| Basic support | ? | ? | ? | 未サポート | ? | ? |
[1] Gecko はこのインタフェースを次の名前で実装しています: RTCPeerConnectionIdentityEvent.
See also
- WebRTC
- このイベントの通常ターゲット:
RTCPeerConnection.

