SetRoomPIN API

The objective is to set room pin to the created room by moderator.

Once the RoomPin is set, all the participants are required to enter the PIN to join the room. API used to implement SetRoomPIN is VidyoConnectorSetRoomPIN .

Note : Only room Owner is able to set/remove room PIN

Interface used here is ISetRoomPIN and the callback triggered is VidyoConnectorOnSetRoomPINResult

public void OnSetRoomPINResult(Connector.ConnectorModerationResult result)

{

if(result == ConnectorModerationResult.ConnectormoderationresultOK)

{

hasRoomPin = false;

}

ModerationWindow.SetIsRoomPIN(hasRoomPin);

}

Last updated