Interface IAudioServer<T>
Assembly: cs.temp.dll.dll
Syntax
public interface IAudioServer<T> : IDisposable
Type Parameters
Properties
ClientIDs
IDs of all the clients in the voice chat
Declaration
List<T> ClientIDs { get; }
Property Value
Type |
Description |
System.Collections.Generic.List<T> |
|
ClientVoiceSettings
Declaration
Dictionary<T, VoiceSettings> ClientVoiceSettings { get; }
Property Value
Type |
Description |
System.Collections.Generic.Dictionary<T, VoiceSettings> |
|
Events
OnClientVoiceSettingsUpdated
Event fired when the peer voice settings are updated
Declaration
event Action OnClientVoiceSettingsUpdated
Event Type
Type |
Description |
System.Action |
|
OnServerStart
Event fired when the server starts
Declaration
event Action OnServerStart
Event Type
Type |
Description |
System.Action |
|
OnServerStop
Event fired when the server stops
Declaration
event Action OnServerStop
Event Type
Type |
Description |
System.Action |
|