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