Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 784 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 784 Bytes

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();
    }