Interface ISignaling
Assembly: Unity.RenderStreaming.dll
Syntax
public interface ISignaling
Properties
Url
Declaration
Property Value
Methods
CloseConnection(string)
Declaration
void CloseConnection(string connectionId)
Parameters
Type |
Name |
Description |
string |
connectionId |
|
OpenConnection(string)
Declaration
void OpenConnection(string connectionId)
Parameters
Type |
Name |
Description |
string |
connectionId |
|
SendAnswer(string, RTCSessionDescription)
Declaration
void SendAnswer(string connectionId, RTCSessionDescription answer)
Parameters
Type |
Name |
Description |
string |
connectionId |
|
RTCSessionDescription |
answer |
|
SendCandidate(string, RTCIceCandidate)
Declaration
void SendCandidate(string connectionId, RTCIceCandidate candidate)
Parameters
Type |
Name |
Description |
string |
connectionId |
|
RTCIceCandidate |
candidate |
|
SendOffer(string, RTCSessionDescription)
Declaration
void SendOffer(string connectionId, RTCSessionDescription offer)
Parameters
Type |
Name |
Description |
string |
connectionId |
|
RTCSessionDescription |
offer |
|
Start()
Declaration
Stop()
Declaration
Events
OnAnswer
Declaration
event OnAnswerHandler OnAnswer
Event Type
OnCreateConnection
Declaration
event OnConnectHandler OnCreateConnection
Event Type
OnDestroyConnection
Declaration
event OnDisconnectHandler OnDestroyConnection
Event Type
OnIceCandidate
Declaration
event OnIceCandidateHandler OnIceCandidate
Event Type
OnOffer
Declaration
event OnOfferHandler OnOffer
Event Type
OnStart
Declaration
event OnStartHandler OnStart
Event Type