Room Event - OnMemberLeave

The event is raised when a client leaves the room you are in. The message passed to the event is the message sent from the client that left the room.

NOTE: If a member client leaves the room with an empty message byte array, this event will NOT be raised.

room.OnMemberLeave += OnRoomMemberLeave;

private void OnRoomMemberLeave(byte[] message)
{

}