Exemplo n.º 1
0
 public async Task ConnectAsync(HubPort source, HubPort sink)
 {
     await client.InvokeAsync(this, "connect", new { source, sink });
 }
Exemplo n.º 2
0
 public async Task DisconnectAsync(MediaType media, HubPort source, HubPort sink)
 {
     await client.InvokeAsync(this, "disconnect", new { media, source, sink });
 }
Exemplo n.º 3
0
 public async Task SetMasterAsync(HubPort source, int zOrder)
 {
     await client.InvokeAsync(this, "setMaster", new { source, zOrder });
 }
Exemplo n.º 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 });
 }
Exemplo n.º 5
0
 public async Task SetSourceAsync(HubPort source)
 {
     await client.InvokeAsync(this, "setSource", new { source });
 }