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