JanusSharp icon indicating copy to clipboard operation
JanusSharp copied to clipboard

C#.Net Client side API wrapper for the Janus-Gateway

C#.Net Client Side API for the Janus Gateway

Designed Use

  • This client side API is for server logic and not for client media exchange
  • Right now should only support synchronous calls to the Janus API

Example Code

    static void Main(string[] args)
    {
      JanusRestClient client = new JanusRestClient("http://192.168.0.195:8088/janus");
      client.InitializeConnection();
      client.InitializeVideoRoomConnection();
      client.CreateRoom(12233);

      client.RemoveRoom(12233);

      client.CleanUp();
    }