Exemple #1
0
 public AmcpRequest(AmcpClient Client, String Command, uint Channel, uint Layer, params String[] Parameters)
 {
     this.client     = Client;
     this.command    = Command;
     this.channel    = Channel;
     this.layer      = Layer;
     this.parameters = Parameters;
 }
Exemple #2
0
 public AmcpRequest(AmcpClient Client, String Command, Caspar.Channel Channel, params String[] Parameters)
     : this(Client, Command, Channel.Id, 0, Parameters)
 {
 }
Exemple #3
0
 public AmcpRequest(AmcpClient Client, String Command)
     : this(Client, Command, 0, 0)
 {
 }