Can I hide my host?

In PUN,I can do it like this:
PhotonNetwork.room.open = false;
PhotonNetwork.room.visible = false;

But how can make that my host hide by Bolt?
I have three scenes: Main,Room,Game.
In "Main",all clients can connect my host(use BoltNetwork.SessionList) and will goto "Room".
In "Room",if I(host) start a game,will goto "Game".
In "Game",I want to hide me(host) in BoltNetwork.SessionList.What should I do?

Comments