Anyone know the photon voice disconnect command i wanna make this script have it

Options

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

using Photon.Realtime;

using Photon.Pun;


public class ChangePhotonSettings : BirbButton


{

  public AppSettings PhotonServerSetting;


  public override void buttonEnter(bool isLeftHand)

  {

    PhotonNetwork.Disconnect();

    PhotonNetwork.ConnectUsingSettings(PhotonServerSetting);

  }


}