Table of Contents

Class RTCIdentityAssertion

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
NOTE
Experimental
The RTCIdentityAssertion interface of the WebRTC API represents the identity of a remote peer of the current connection. If no peer has yet been set and verified, then this interface returns null. Once set it can't be changed.
[Value("RTCIdentityAssertion")]
public class RTCIdentityAssertion
Inheritance
RTCIdentityAssertion
Inherited Members

Remarks

Constructors

RTCIdentityAssertion()

public RTCIdentityAssertion()

RTCIdentityAssertion(string, string)

public RTCIdentityAssertion(string idp, string name)

Parameters

idp string
name string

Properties

Idp

[Value("idp")]
public string Idp { get; set; }

Property Value

string

Name

[Value("name")]
public string Name { get; set; }

Property Value

string