Remove RoomPIN API
The objective is to remove room pin to the created room by moderator.
Once room PIN is removed, all other participants are not required to enter room PIN to join Conference Room. API used to implement Remove RoomPIN is VidyoConnectorRemoveRoomPIN .
Note : Only room Owner is able to set/remove room PIN.
Interface used is IRemoveRoomPIN and the callback triggered VidyoConnectorOnRemoveRoomPINResult
public void OnRemoveRoomPINResult(Connector.ConnectorModerationResult result)
{
if(result == ConnectorModerationResult.ConnectormoderationresultOK)
{
hasRoomPin = false;
}
ModerationWindow.SetIsRoomPIN(hasRoomPin);
}
public void SetIsRoomPIN(bool status)
{
if (status)
PasswordBoxRoomPIN.Password = "******";
else
PasswordBoxRoomPIN.Password = "";
}
Last updated