Audio
Enable Audio
The EnableAudio method enables the local microphone and starts producing the audio stream with the label audio.
private void EnableAudio()
{
_huddleClientInstance.EnableAudio();
}
Disable Audio
The DisableAudio method stops the local audio stream and also stops producing the audio stream with remote peers.
private void DisableAudio()
{
_huddleClientInstance.DisableAudio();
}