コード例 #1
0
 public async Task ConnectAsync(HubPort source, HubPort sink)
 {
     await client.InvokeAsync(this, "connect", new { source, sink });
 }
コード例 #2
0
ファイル: Mixer.cs プロジェクト: xv-chang/Kurento.NET
 public async Task DisconnectAsync(MediaType media, HubPort source, HubPort sink)
 {
     await client.InvokeAsync(this, "disconnect", new { media, source, sink });
 }
コード例 #3
0
 public async Task SetMasterAsync(HubPort source, int zOrder)
 {
     await client.InvokeAsync(this, "setMaster", new { source, zOrder });
 }
コード例 #4
0
 public async Task SetPortPropertiesAsync(float relativeX, float relativeY, int zOrder, float relativeWidth, float relativeHeight, HubPort port)
 {
     await client.InvokeAsync(this, "setPortProperties", new { relativeX, relativeY, zOrder, relativeWidth, relativeHeight, port });
 }
コード例 #5
0
 public async Task SetSourceAsync(HubPort source)
 {
     await client.InvokeAsync(this, "setSource", new { source });
 }